summaryrefslogtreecommitdiff
path: root/python/commands
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2009-08-25 16:48:03 +0000
committerTed Ross <tross@apache.org>2009-08-25 16:48:03 +0000
commit24a9ab133d6cc7d765c1bc1c6c9eaf83b2d3cdd2 (patch)
treed61979385e948db50b64beb729e817bd68c0af21 /python/commands
parent41c5a4f995cf16505f92257a0aa08ae967c8d466 (diff)
downloadqpid-python-24a9ab133d6cc7d765c1bc1c6c9eaf83b2d3cdd2.tar.gz
Added management visibility into the alternate exchange and auto-delete attributes
of an exchange. Note that auto-delete is not implemented for exchanges. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@807712 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/commands')
-rwxr-xr-xpython/commands/qpid-config2
1 files changed, 2 insertions, 0 deletions
diff --git a/python/commands/qpid-config b/python/commands/qpid-config
index c4ea5c5f2d..a10753f011 100755
--- a/python/commands/qpid-config
+++ b/python/commands/qpid-config
@@ -190,6 +190,8 @@ class BrokerManager:
if ex.durable: print "--durable",
if MSG_SEQUENCE in args and args[MSG_SEQUENCE] == 1: print "--sequence",
if IVE in args and args[IVE] == 1: print "--ive",
+ if ex.altExchange:
+ print "--alternate-exchange=%s" % ex._altExchange_.name,
print
def ExchangeListRecurse (self, filter):