diff options
| author | Aidan Skinner <aidan@apache.org> | 2008-10-17 16:06:06 +0000 |
|---|---|---|
| committer | Aidan Skinner <aidan@apache.org> | 2008-10-17 16:06:06 +0000 |
| commit | 4323068739c561d68ddeebfe1c5ccff4b8ae057b (patch) | |
| tree | f16e5e5fb817811fc44425ad83af110762061a51 /java/systests | |
| parent | fbff577e09717f1f8304c713e08e8a278a11d8f0 (diff) | |
| download | qpid-python-4323068739c561d68ddeebfe1c5ccff4b8ae057b.tar.gz | |
s/setPrefecthLimits/setPrefetchLimits
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@705654 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/systests')
| -rw-r--r-- | java/systests/src/main/java/org/apache/qpid/test/client/FlowControlTest.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/systests/src/main/java/org/apache/qpid/test/client/FlowControlTest.java b/java/systests/src/main/java/org/apache/qpid/test/client/FlowControlTest.java index 94096e412d..910d546034 100644 --- a/java/systests/src/main/java/org/apache/qpid/test/client/FlowControlTest.java +++ b/java/systests/src/main/java/org/apache/qpid/test/client/FlowControlTest.java @@ -79,7 +79,7 @@ public class FlowControlTest extends QpidTestCase Connection consumerConnection = getConnection(); Session consumerSession = consumerConnection.createSession(false, Session.CLIENT_ACKNOWLEDGE); - ((AMQSession_0_8) consumerSession).setPrefecthLimits(0, 256); + ((AMQSession_0_8) consumerSession).setPrefetchLimits(0, 256); MessageConsumer recv = consumerSession.createConsumer(_queue); consumerConnection.start(); @@ -152,7 +152,7 @@ public class FlowControlTest extends QpidTestCase Connection consumerConnection = getConnection(); Session consumerSession1 = consumerConnection.createSession(false, Session.CLIENT_ACKNOWLEDGE); - ((AMQSession_0_8) consumerSession1).setPrefecthLimits(0, 256); + ((AMQSession_0_8) consumerSession1).setPrefetchLimits(0, 256); MessageConsumer recv1 = consumerSession1.createConsumer(_queue); consumerConnection.start(); @@ -165,7 +165,7 @@ public class FlowControlTest extends QpidTestCase assertNull("Second message incorrectly delivered", r2); Session consumerSession2 = consumerConnection.createSession(false, Session.CLIENT_ACKNOWLEDGE); - ((AMQSession_0_8) consumerSession2).setPrefecthLimits(0, 256); + ((AMQSession_0_8) consumerSession2).setPrefetchLimits(0, 256); MessageConsumer recv2 = consumerSession2.createConsumer(_queue); r2 = recv2.receive(100000L);//RECEIVE_TIMEOUT); |
