diff options
| author | Gordon Sim <gsim@apache.org> | 2013-09-20 18:35:07 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2013-09-20 18:35:07 +0000 |
| commit | f6c674897d34c1a78e3e9b20301267933cdf7001 (patch) | |
| tree | dce095b517b19c52cc1a74cfa8851a2fc77cbe89 /qpid/tools/src/py | |
| parent | db7de0df31df32014f8b41ca9dc7c63c18911d9b (diff) | |
| download | qpid-python-f6c674897d34c1a78e3e9b20301267933cdf7001.tar.gz | |
QPID-5152: handling of exchange properties for create-on-demand with 1.0
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1525091 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/tools/src/py')
| -rwxr-xr-x | qpid/tools/src/py/qpid-config | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/tools/src/py/qpid-config b/qpid/tools/src/py/qpid-config index 1e995674c4..44ad9fc258 100755 --- a/qpid/tools/src/py/qpid-config +++ b/qpid/tools/src/py/qpid-config @@ -441,8 +441,8 @@ class BrokerManager: if not args: args = {} if ex.durable: print "--durable", if REPLICATE in args: print "--replicate=%s" % args[REPLICATE], - if MSG_SEQUENCE in args and args[MSG_SEQUENCE] == 1: print "--sequence", - if IVE in args and args[IVE] == 1: print "--ive", + if MSG_SEQUENCE in args and args[MSG_SEQUENCE]: print "--sequence", + if IVE in args and args[IVE]: print "--ive", if ex.altExchange: print "--alternate-exchange=%s" % ex.altExchange, print |
