commit | 2405d366ba00c1559014e2f00f68387d6b5646ab | [log] [tgz] |
---|---|---|
author | Dennis Dmitriev <ddmitriev@mirantis.com> | Fri Jun 15 15:24:29 2018 +0300 |
committer | Dennis Dmitriev <ddmitriev@mirantis.com> | Fri Jun 15 15:25:06 2018 +0300 |
tree | 4d1ab4cf400ef0a7b30dc1db2013f7bc51ca3ab8 | |
parent | 643ca27a7e4cbefb60803a40d9ffae5d8c292f7f [diff] |
Fix oslo-config value substitution Change-Id: I923b7dff56630339d3f73a28f5cb5898c608087d
diff --git a/tcp_tests/helpers/oslo_cfg_types.py b/tcp_tests/helpers/oslo_cfg_types.py index aff8db0..f7be2d7 100644 --- a/tcp_tests/helpers/oslo_cfg_types.py +++ b/tcp_tests/helpers/oslo_cfg_types.py
@@ -133,5 +133,5 @@ res = super(Cfg, self)._get_from_namespace(namespace, group_name) # Use the value from enviroment variable instead of config if hasattr(self, 'environment_value'): - res = (self.environment_value, res[1]) + res = self.environment_value return res