summaryrefslogtreecommitdiff
path: root/qpid/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
commitf121fc29d5d03b9e19ba980c32d4109d6c1d4313 (patch)
tree6ec6f4557bf7bdc2a925a243ac54c98634ecbb44 /qpid/python/commands
parenta176921b2ebc4ca8ae6bd3529e27512c53a21bd7 (diff)
downloadqpid-python-f121fc29d5d03b9e19ba980c32d4109d6c1d4313.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@807712 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python/commands')
-rwxr-xr-xqpid/python/commands/qpid-config2
1 files changed, 2 insertions, 0 deletions
diff --git a/qpid/python/commands/qpid-config b/qpid/python/commands/qpid-config
index c4ea5c5f2d..a10753f011 100755
--- a/qpid/python/commands/qpid-config
+++ b/qpid/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):