summaryrefslogtreecommitdiff
path: root/python/qpid/brokertest.py
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2010-03-23 14:57:28 +0000
committerRafael H. Schloming <rhs@apache.org>2010-03-23 14:57:28 +0000
commitfe99d24c4084b2cb2479b820a5b44378d1812ffc (patch)
tree82dd1a8c229d9d86e266870769b6460fad7dd2e0 /python/qpid/brokertest.py
parent166b7426164e35992d43d88b5c9e61c0482a41bd (diff)
downloadqpid-python-fe99d24c4084b2cb2479b820a5b44378d1812ffc.tar.gz
Several updates to address options including:
- renamed node-properties to node - added link to permit durable links (with names) - split x-properties into x-declare, x-subscribe, and x-bindings - removed automatic passthrough of unrecognized options (as this was confusing) git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@926604 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/brokertest.py')
-rw-r--r--python/qpid/brokertest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/qpid/brokertest.py b/python/qpid/brokertest.py
index 25642d0c88..192228a74a 100644
--- a/python/qpid/brokertest.py
+++ b/python/qpid/brokertest.py
@@ -303,8 +303,8 @@ class Broker(Popen):
c.close()
def _prep_sender(self, queue, durable, xprops):
- s = queue + "; {create:always, node-properties:{durable:" + str(durable)
- if xprops != None: s += ", x-properties:{" + xprops + "}"
+ s = queue + "; {create:always, node:{durable:" + str(durable)
+ if xprops != None: s += ", x-declare:{" + xprops + "}"
return s + "}}"
def send_message(self, queue, message, durable=True, xprops=None, session=None):