diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-08-07 12:06:41 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-08-07 12:22:00 +0200 |
commit | 3d1986d1a8035e93b7ad7e4331cb1cbe126a857f (patch) | |
tree | e52299c17ed534d281b9aab8aa9c33c1d7519def | |
parent | a624e4a9a03d03cbfecc4bdcd5fb91068205b36d (diff) |
Fix swift operator role
[1] https://build.opnfv.org/ci/view/functest/job/functest-fuel-armband-baremetal-daily-master/35/console
Change-Id: I7236bf5a74f36941f499da32c5c77dcd0b98b6f1
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
-rw-r--r-- | functest/opnfv_tests/openstack/tempest/tempest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/opnfv_tests/openstack/tempest/tempest.py b/functest/opnfv_tests/openstack/tempest/tempest.py index 8e61253f8..05f13c051 100644 --- a/functest/opnfv_tests/openstack/tempest/tempest.py +++ b/functest/opnfv_tests/openstack/tempest/tempest.py @@ -305,7 +305,7 @@ class TempestCommon(singlevm.VmReady1): rconfig.read(rally_conf) if not rconfig.has_section('tempest'): rconfig.add_section('tempest') - rconfig.set('tempest', 'swift_operator_role', '^{}$'.format(role.name)) + rconfig.set('tempest', 'swift_operator_role', role.name) with open(rally_conf, 'wb') as config_file: rconfig.write(config_file) |