diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-01-14 10:16:34 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-01-14 10:16:34 +0100 |
commit | b5bb5c648a03887f751e2c1a2387b96a030a3dfd (patch) | |
tree | fbf44123b90a02bb239f0121ee144a96d027ce98 /java/test | |
parent | ICE-6955 - refcount bug in Python blobject API (diff) | |
download | ice-b5bb5c648a03887f751e2c1a2387b96a030a3dfd.tar.bz2 ice-b5bb5c648a03887f751e2c1a2387b96a030a3dfd.tar.xz ice-b5bb5c648a03887f751e2c1a2387b96a030a3dfd.zip |
Updated timeouts in Java/C# timeout test to prevent SLES failures
Diffstat (limited to 'java/test')
-rw-r--r-- | java/test/src/main/java/test/Ice/timeout/AllTests.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/test/src/main/java/test/Ice/timeout/AllTests.java b/java/test/src/main/java/test/Ice/timeout/AllTests.java index b0c8abbca4d..2cb988cedcf 100644 --- a/java/test/src/main/java/test/Ice/timeout/AllTests.java +++ b/java/test/src/main/java/test/Ice/timeout/AllTests.java @@ -367,10 +367,10 @@ public class AllTests // Ice.InitializationData initData = app.createInitializationData(); initData.properties = communicator.getProperties()._clone(); - initData.properties.setProperty("Ice.Override.Timeout", "100"); + initData.properties.setProperty("Ice.Override.Timeout", "250"); Ice.Communicator comm = app.initialize(initData); TimeoutPrx to = TimeoutPrxHelper.checkedCast(comm.stringToProxy(sref)); - timeout.holdAdapter(500 * mult); + timeout.holdAdapter(700 * mult); try { to.sendData(seq); |