diff options
| author | Robert Gemmell <robbie@apache.org> | 2010-05-25 13:40:16 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2010-05-25 13:40:16 +0000 |
| commit | 8dbc679f87655e6e368583abc67ebb5a849753c6 (patch) | |
| tree | 3ac0eae2729c56e006998ad81dc4b6ab7f79f577 | |
| parent | 9d71424242925a8d24bf3068e06ab609ce71b9cc (diff) | |
| download | qpid-python-8dbc679f87655e6e368583abc67ebb5a849753c6.tar.gz | |
Reduce the large number of persistent messages sent by DupsOkTest from 4999 to 100
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@948038 13f79535-47bb-0310-9956-ffa450edef68
| -rw-r--r-- | qpid/java/systests/src/main/java/org/apache/qpid/test/client/DupsOkTest.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/test/client/DupsOkTest.java b/qpid/java/systests/src/main/java/org/apache/qpid/test/client/DupsOkTest.java index eb0c539a6e..ec7dcee703 100644 --- a/qpid/java/systests/src/main/java/org/apache/qpid/test/client/DupsOkTest.java +++ b/qpid/java/systests/src/main/java/org/apache/qpid/test/client/DupsOkTest.java @@ -41,8 +41,7 @@ public class DupsOkTest extends QpidTestCase { private Queue _queue; - // Question why do we need to send so many messages? - private static final int MSG_COUNT = 4999; + private static final int MSG_COUNT = 100; private CountDownLatch _awaitCompletion = new CountDownLatch(1); public void setUp() throws Exception |
