summaryrefslogtreecommitdiff
path: root/java/client/test/src
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2006-10-17 15:57:18 +0000
committerMartin Ritchie <ritchiem@apache.org>2006-10-17 15:57:18 +0000
commitb8cb6602b076df6f9bacc91cc4396ab90e26b9ca (patch)
tree648c6c607bffbd7299339b10d1903c325ebefb9a /java/client/test/src
parentf6ed9e1b6a770caa5889f670cba0c74ab1c82357 (diff)
downloadqpid-python-b8cb6602b076df6f9bacc91cc4396ab90e26b9ca.tar.gz
Implemented Client side high/low water mark prefetching for NO_ACK.
Use of single prefetch should be unaffected. Setting the high and low to be the same. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@464950 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/client/test/src')
-rw-r--r--java/client/test/src/org/apache/qpid/flow/ChannelFlowTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/client/test/src/org/apache/qpid/flow/ChannelFlowTest.java b/java/client/test/src/org/apache/qpid/flow/ChannelFlowTest.java
index 3445b37317..fad1849fed 100644
--- a/java/client/test/src/org/apache/qpid/flow/ChannelFlowTest.java
+++ b/java/client/test/src/org/apache/qpid/flow/ChannelFlowTest.java
@@ -43,7 +43,7 @@ public class ChannelFlowTest implements MessageListener
ChannelFlowTest(AMQConnection connection, AMQDestination destination) throws Exception
{
- AMQSession session = (AMQSession) connection.createSession(false, AMQSession.NO_ACKNOWLEDGE, 50);
+ AMQSession session = (AMQSession) connection.createSession(false, AMQSession.NO_ACKNOWLEDGE, 50,25);
//set up a slow consumer
session.createConsumer(destination).setMessageListener(this);