diff options
| author | Rafael H. Schloming <rhs@apache.org> | 2008-05-22 21:43:13 +0000 |
|---|---|---|
| committer | Rafael H. Schloming <rhs@apache.org> | 2008-05-22 21:43:13 +0000 |
| commit | 40c23abab70a4c1a5f67e42517323a7964324917 (patch) | |
| tree | 0632eb5c5cf9e8138de3f7fab2fd2cb0d7e090e3 /java/client/src/test | |
| parent | 1829eedb1e82a0777a6ea8a180aacef4d89a59f0 (diff) | |
| download | qpid-python-40c23abab70a4c1a5f67e42517323a7964324917.tar.gz | |
Made Range, RangeSet, and Session all use proper RFC1982 comparisons per QPID-861. Also switched command ids from long -> int, and added a mutex to channel to prevent multi-frame commands from interleaving when invoked from separate threads.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@659271 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/client/src/test')
| -rw-r--r-- | java/client/src/test/java/org/apache/qpid/test/unit/client/channelclose/ChannelCloseOkTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/client/src/test/java/org/apache/qpid/test/unit/client/channelclose/ChannelCloseOkTest.java b/java/client/src/test/java/org/apache/qpid/test/unit/client/channelclose/ChannelCloseOkTest.java index a49765baaf..74c0098d72 100644 --- a/java/client/src/test/java/org/apache/qpid/test/unit/client/channelclose/ChannelCloseOkTest.java +++ b/java/client/src/test/java/org/apache/qpid/test/unit/client/channelclose/ChannelCloseOkTest.java @@ -199,7 +199,7 @@ public class ChannelCloseOkTest extends QpidTestCase private void waitFor(List<Message> received, int count) throws InterruptedException { - long timeout = 6000; + long timeout = 20000; synchronized (received) { |
