diff options
| author | Ted Ross <tross@apache.org> | 2009-08-25 16:48:03 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2009-08-25 16:48:03 +0000 |
| commit | 24a9ab133d6cc7d765c1bc1c6c9eaf83b2d3cdd2 (patch) | |
| tree | d61979385e948db50b64beb729e817bd68c0af21 /python/commands | |
| parent | 41c5a4f995cf16505f92257a0aa08ae967c8d466 (diff) | |
| download | qpid-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-x | python/commands/qpid-config | 2 |
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): |
