summaryrefslogtreecommitdiff
path: root/java
diff options
context:
space:
mode:
authorKeith Wall <kwall@apache.org>2012-12-22 23:57:01 +0000
committerKeith Wall <kwall@apache.org>2012-12-22 23:57:01 +0000
commit5634666b51e1421f604a3a4d55ad92f48877f0b8 (patch)
tree4b42eb7f5929e7a56e193cb44d588fbed3daaaea /java
parent04b33aaa49e6d74a4e5189df321d2ee99b198b41 (diff)
downloadqpid-python-5634666b51e1421f604a3a4d55ad92f48877f0b8.tar.gz
QPID-4502: [Java Broker] Document DLQ/Maximum Delivery Count features
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1425377 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
-rw-r--r--java/systests/src/main/java/org/apache/qpid/test/unit/client/MaxDeliveryCountTest.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/java/systests/src/main/java/org/apache/qpid/test/unit/client/MaxDeliveryCountTest.java b/java/systests/src/main/java/org/apache/qpid/test/unit/client/MaxDeliveryCountTest.java
index bc1eead8b4..8c407d3def 100644
--- a/java/systests/src/main/java/org/apache/qpid/test/unit/client/MaxDeliveryCountTest.java
+++ b/java/systests/src/main/java/org/apache/qpid/test/unit/client/MaxDeliveryCountTest.java
@@ -85,8 +85,10 @@ public class MaxDeliveryCountTest extends QpidBrokerTestCase
// Set client-side flag to allow the server to determine if messages
// dead-lettered or requeued.
- setTestClientSystemProperty(ClientProperties.REJECT_BEHAVIOUR_PROP_NAME, "server");
-
+ if (!isBroker010())
+ {
+ setTestClientSystemProperty(ClientProperties.REJECT_BEHAVIOUR_PROP_NAME, "server");
+ }
super.setUp();
boolean durableSub = isDurSubTest();