commit | 37f567653f5c2ba082105fe647ade06c679c6bee | [log] [tgz] |
---|---|---|
author | Jenkins <jenkins@review.openstack.org> | Wed Aug 20 11:59:52 2014 +0000 |
committer | Gerrit Code Review <review@openstack.org> | Wed Aug 20 11:59:52 2014 +0000 |
tree | d200db554d5067e9fab708cf74216226e3f801a8 | |
parent | eb3f2cdf841b74e5b1322347d9f0e5d462fcf4ab [diff] | |
parent | a96ee210f20145372ce9430dceca6700c7ef2aa5 [diff] |
Merge "Supports DEFAULT group opts in TempestPrivateConfig"
diff --git a/tempest/config.py b/tempest/config.py index 2412955..4836c63 100644 --- a/tempest/config.py +++ b/tempest/config.py
@@ -1083,6 +1083,10 @@ DEFAULT_CONFIG_FILE = "tempest.conf" + def __getattr__(self, attr): + # Handles config options from the default group + return getattr(cfg.CONF, attr) + def _set_attrs(self): self.auth = cfg.CONF.auth self.compute = cfg.CONF.compute