diff options
author | Pavel Moravec <pmoravec@redhat.com> | 2015-08-31 12:55:58 +0200 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2015-10-15 11:47:51 +0100 |
commit | 5e02bb46cc1cddf7ccba27ff05a8702e806ad30d (patch) | |
tree | 7ddf9cb4c44ec6b729703e680535c1cb0932b8b9 | |
parent | 3ce984a7d220669eaf2e6c08d983679183fb55fe (diff) | |
download | sos-5e02bb46cc1cddf7ccba27ff05a8702e806ad30d.tar.gz |
[qpid] Fix missing commas in add_cmd_output
Commands "qpid-config exchanges" and "qpid-config queues" lack comma in
the list. That causes the commands are not collected by sosreport and
executed.
Signed-off-by: Pavel Moravec <pmoravec@redhat.com>
-rw-r--r-- | sos/plugins/qpid.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sos/plugins/qpid.py b/sos/plugins/qpid.py index 96ee6d6e..319c458f 100644 --- a/sos/plugins/qpid.py +++ b/sos/plugins/qpid.py @@ -34,8 +34,8 @@ class Qpid(Plugin, RedHatPlugin): "qpid-stat -q", "qpid-stat -u", "qpid-stat -m", # applies since 0.18 version - "qpid-config exchanges" - "qpid-config queues" + "qpid-config exchanges", + "qpid-config queues", "qpid-config exchanges -b", # applies to pre-0.18 versions "qpid-config queues -b", # applies to pre-0.18 versions "qpid-config exchanges -r", # applies since 0.18 version |