summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests/cluster_tests.py
diff options
context:
space:
mode:
authorKenneth Anthony Giusti <kgiusti@apache.org>2011-10-05 12:59:55 +0000
committerKenneth Anthony Giusti <kgiusti@apache.org>2011-10-05 12:59:55 +0000
commitbfbc8b09403cf94a83b5aea177a000c4c7f0381c (patch)
tree3d248db144084565353894d6b638c5d949ed0020 /qpid/cpp/src/tests/cluster_tests.py
parentb0b12b6cd16c5997a2ca77d48f14d8e932b8e7ea (diff)
downloadqpid-python-bfbc8b09403cf94a83b5aea177a000c4c7f0381c.tar.gz
QPID-3346: enhance the configuration UI for msg groups
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/qpid-3346@1179208 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/cluster_tests.py')
-rwxr-xr-xqpid/cpp/src/tests/cluster_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/tests/cluster_tests.py b/qpid/cpp/src/tests/cluster_tests.py
index 879dcdaeaf..d217f9fbde 100755
--- a/qpid/cpp/src/tests/cluster_tests.py
+++ b/qpid/cpp/src/tests/cluster_tests.py
@@ -1463,8 +1463,8 @@ class LongTests(BrokerTest):
# create a queue with rather draconian flow control settings
ssn0 = cluster[0].connect().session()
- s0 = ssn0.sender("test-group-q; {create:always, node:{type:queue, x-declare:{arguments:{'qpid.group_header_key':'group-id'}}}}")
-
+ q_args = "{'qpid.group_header_key':'group-id', 'qpid.shared_msg_group':1}"
+ s0 = ssn0.sender("test-group-q; {create:always, node:{type:queue, x-declare:{arguments:%s}}}" % q_args)
# Kill original brokers, start new ones for the duration.
endtime = time.time() + self.duration();