Fixed gate-murano-congress-dsvm job

- Fixed bug in devstack/lib
- Fixed incorrect name of function

Closes-Bug: #1430260
Change-Id: I56da5d2c88154abbedcc5ccc9d24231a791734f1
This commit is contained in:
vryzhenkin 2015-03-10 13:10:35 +03:00
parent 18e831a2c1
commit 9956ebc758
2 changed files with 3 additions and 4 deletions

View File

@ -180,8 +180,7 @@ function configure_murano {
# Murano Policy Enforcement Configuration
if [[ -n "$MURANO_ENABLE_MODEL_POLICY_ENFORCEMENT" ]]; then
iniset $MURANO_CONF_FILE engine enable_model_policy_enforcer \
$MURANO_ENABLE_MODEL_POLICY_ENFORCEMENT
iniset $MURANO_CONF_FILE engine enable_model_policy_enforcer $MURANO_ENABLE_MODEL_POLICY_ENFORCEMENT
fi
# Murano Api Configuration

View File

@ -51,7 +51,7 @@ class MistralTest(testtools.TestCase, tempest_utils.TempestDeployTestMixin):
try:
# Upload the Murano test package.
cls.upload_mistral_test_app()
cls.upload_mistral_showcase_app()
except Exception as e:
cls.tearDownClass()
@ -63,7 +63,7 @@ class MistralTest(testtools.TestCase, tempest_utils.TempestDeployTestMixin):
cls.purge_uploaded_packages()
@classmethod
def upload_mistral_test_app(cls):
def upload_mistral_showcase_app(cls):
app_dir = 'io.murano.apps.test.MistralShowcaseApp'
zip_file_path = cls.zip_dir(os.path.dirname(__file__), app_dir)
cls.init_list("_package_files")