diff options
| author | Ted Ross <tross@apache.org> | 2008-06-02 16:01:51 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2008-06-02 16:01:51 +0000 |
| commit | 40c8b6f844ce64fc4245e5f91e6b1eaea2fc9e94 (patch) | |
| tree | 80438fbfb8739e9189fdad70d8271ae2ca8d26f4 /python/commands/qpid-config | |
| parent | e1c0b830b67e68be71e65ef18657e746ed6b971f (diff) | |
| download | qpid-python-40c8b6f844ce64fc4245e5f91e6b1eaea2fc9e94.tar.gz | |
QPID-1113 Management cleanup and performance enhancements
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@662470 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/commands/qpid-config')
| -rwxr-xr-x | python/commands/qpid-config | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/commands/qpid-config b/python/commands/qpid-config index 58a2272ed2..cc9315f7ea 100755 --- a/python/commands/qpid-config +++ b/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 () |
