diff options
author | Jose <jose@zeroc.com> | 2019-10-10 10:32:33 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2019-10-10 10:33:20 +0200 |
commit | 07b8b37de0776378907ef68a6ed56c768e2a5248 (patch) | |
tree | 4377a04d280de652fcb3a02eb5c988973799f78c /java | |
parent | Add autorelease pool to sync invocation responses (diff) | |
download | ice-07b8b37de0776378907ef68a6ed56c768e2a5248.tar.bz2 ice-07b8b37de0776378907ef68a6ed56c768e2a5248.tar.xz ice-07b8b37de0776378907ef68a6ed56c768e2a5248.zip |
Fix for Ice/acm timeout - Close #558
Diffstat (limited to 'java')
-rw-r--r-- | java/test/src/main/java/test/Ice/acm/AllTests.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/test/src/main/java/test/Ice/acm/AllTests.java b/java/test/src/main/java/test/Ice/acm/AllTests.java index 7f15c314d52..8877ea33e83 100644 --- a/java/test/src/main/java/test/Ice/acm/AllTests.java +++ b/java/test/src/main/java/test/Ice/acm/AllTests.java @@ -430,7 +430,7 @@ public class AllTests public CloseOnIdleAndInvocationTest(TestHelper helper, RemoteCommunicatorPrx com, java.io.PrintWriter out) { super(helper, "close on idle and invocation", com, out); - setClientACM(1, 3, 0); // Only close on idle and invocation + setClientACM(3, 3, 0); // Only close on idle and invocation } public void runTestCase(RemoteObjectAdapterPrx adapter, TestIntfPrx proxy) @@ -443,7 +443,7 @@ public class AllTests adapter.hold(); try { - Thread.sleep(3000); // Idle for 3 seconds + Thread.sleep(5000); // Idle for 5 seconds } catch(java.lang.InterruptedException ex) { |