diff options
author | Lee Yarwood <lyarwood@redhat.com> | 2019-01-30 21:10:22 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2019-03-04 16:23:10 +0000 |
commit | 05a66ba83c8e22d2b43cdbf6fae65c5a66ad1133 (patch) | |
tree | 39bb184062e63460d61c7480875bce88d838f6d6 | |
parent | b141f1ada1f6777a16ee28adff13e10d56ce41ea (diff) | |
download | sos-05a66ba83c8e22d2b43cdbf6fae65c5a66ad1133.tar.gz |
[openstack_nova] Remove redundant Docker call
This call is no longer used and was missed during the clean up in
2b29530eb50ab1016937f5c28adaf4e2288e46be.
Resolves: ##1552
Signed-off-by: Lee Yarwood <lyarwood@redhat.com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/openstack_nova.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sos/plugins/openstack_nova.py b/sos/plugins/openstack_nova.py index 4fde7565..427331e2 100644 --- a/sos/plugins/openstack_nova.py +++ b/sos/plugins/openstack_nova.py @@ -33,7 +33,6 @@ class OpenStackNova(Plugin): "systemctl status openstack-nova-api.service" ) - container_status = self.get_command_output("docker ps") in_container = self.running_in_container() if (service_status['status'] == 0) or in_container: |