From 47dc1d61267c1170b6635bcaa5df3e4851a60c64 Mon Sep 17 00:00:00 2001 From: Pavlo Shchelokovskyy Date: Mon, 3 Aug 2015 16:03:44 +0000 Subject: [PATCH] Fix pre_test_hook.sh encryption setting Currently option to encrypt parameters is being put in wrong config section. Depends-On: I3d8d54fa7441c95fc3de5354f80ce2e7e2ba7054 Change-Id: Iec34be7918358e0d32bab5eb298d2d8b2cce8e0a --- heat_integrationtests/pre_test_hook.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/heat_integrationtests/pre_test_hook.sh b/heat_integrationtests/pre_test_hook.sh index 851dc7b9ff..a869b95cd2 100755 --- a/heat_integrationtests/pre_test_hook.sh +++ b/heat_integrationtests/pre_test_hook.sh @@ -30,9 +30,9 @@ echo -e 'notification_driver=messagingv2\n' >> $localconf echo -e 'num_engine_workers=2\n' >> $localconf echo -e 'plugin_dirs=$HEAT_DIR/heat_integrationtests/common/test_resources\n' >> $localconf echo -e 'hidden_stack_tags=hidden\n' >> $localconf +echo -e 'encrypt_parameters_and_properties=True\n' >> $localconf echo -e '[heat_api]\nworkers=1\n' >> $localconf echo -e '[heat_api_cfn]\nworkers=1\n' >> $localconf -echo -e '[heat_api_cloudwatch]\nworkers=1' >> $localconf -echo -e 'encrypt_parameters_and_properties=True\n' >> $localconf +echo -e '[heat_api_cloudwatch]\nworkers=1\n' >> $localconf