diff options
author | Aaron Smith <aasmith@redhat.com> | 2018-09-26 14:44:58 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-09-26 14:44:58 +0000 |
commit | dda0e18b1dd1a9a2397f43262124d4de3dc424e7 (patch) | |
tree | a65623f5ee3073c96aefad659cee7553451be19a /baro_tests | |
parent | ec05bfdf4721bec6abab0b912cee721c5cc54e1d (diff) | |
parent | f3207cb719217231e5e212d2e84b0e7db97e97bf (diff) |
Merge "Fix that required tests are skipped"
Diffstat (limited to 'baro_tests')
-rw-r--r-- | baro_tests/collectd.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/baro_tests/collectd.py b/baro_tests/collectd.py index 51350495..4148c27a 100644 --- a/baro_tests/collectd.py +++ b/baro_tests/collectd.py @@ -794,15 +794,15 @@ def main(bt_logger=None): compute_node_names.append(node_name) plugins_to_enable = [] error_plugins = [] - gnocchi_running = ( + gnocchi_running_com = ( gnocchi_running and conf.check_gnocchi_plugin_included( compute_node)) - aodh_running = ( + aodh_running_com = ( aodh_running and conf.check_aodh_plugin_included(compute_node)) # logger.info("SNMP enabled on {}" .format(node_name)) - if gnocchi_running: + if gnocchi_running_com: out_plugins[node_id].append("Gnocchi") - if aodh_running: + if aodh_running_com: out_plugins[node_id].append("AODH") if snmp_running: out_plugins[node_id].append("SNMP") |