From fe99d24c4084b2cb2479b820a5b44378d1812ffc Mon Sep 17 00:00:00 2001 From: "Rafael H. Schloming" Date: Tue, 23 Mar 2010 14:57:28 +0000 Subject: 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 --- python/qpid/brokertest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/qpid/brokertest.py') 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): -- cgit v1.2.1