summaryrefslogtreecommitdiff
path: root/qpid/python/commands/qpid-config
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2008-06-02 16:01:51 +0000
committerTed Ross <tross@apache.org>2008-06-02 16:01:51 +0000
commitf72b278bcee746b01bc8334a0bd3775817db3162 (patch)
tree00d4bcd28113705f6340948cc9bea6e5d3131f91 /qpid/python/commands/qpid-config
parent05dc4f8b39a1d7bfb8057ba8abe7117f935dda58 (diff)
downloadqpid-python-f72b278bcee746b01bc8334a0bd3775817db3162.tar.gz
QPID-1113 Management cleanup and performance enhancements
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@662470 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python/commands/qpid-config')
-rwxr-xr-xqpid/python/commands/qpid-config6
1 files changed, 3 insertions, 3 deletions
diff --git a/qpid/python/commands/qpid-config b/qpid/python/commands/qpid-config
index 58a2272ed2..cc9315f7ea 100755
--- a/qpid/python/commands/qpid-config
+++ b/qpid/python/commands/qpid-config
@@ -145,7 +145,7 @@ class BrokerManager:
print "======================================================="
for ex in exchanges:
if self.match (ex.name, filter):
- print "%4c %-10s%5d %s" % (YN (ex.durable), ex.type, ex.bindings, ex.name)
+ print "%4c %-10s%5d %s" % (YN (ex.durable), ex.type, ex.bindingCount, ex.name)
def ExchangeListRecurse (self, filter):
self.ConnectToBroker ()
@@ -185,12 +185,12 @@ class BrokerManager:
fc = int (args[FILECOUNT])
print "%4c%9c%7c%10d%11dx%-14d%s" % \
(YN (q.durable), YN (q.autoDelete),
- YN (q.exclusive), q.bindings, fc, fs, q.name)
+ YN (q.exclusive), q.bindingCount, fc, fs, q.name)
else:
if not _durable:
print "%4c%9c%7c%10d %s" % \
(YN (q.durable), YN (q.autoDelete),
- YN (q.exclusive), q.bindings, q.name)
+ YN (q.exclusive), q.bindingCount, q.name)
def QueueListRecurse (self, filter):
self.ConnectToBroker ()