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 | f121fc29d5d03b9e19ba980c32d4109d6c1d4313 (patch) | |
| tree | 6ec6f4557bf7bdc2a925a243ac54c98634ecbb44 /qpid/python/commands | |
| parent | a176921b2ebc4ca8ae6bd3529e27512c53a21bd7 (diff) | |
| download | qpid-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-x | qpid/python/commands/qpid-config | 2 |
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): |
