diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-06-23 15:39:31 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-06-23 15:39:31 +0200 |
commit | c48b468f6588cb0aff170d9a89603c9029886474 (patch) | |
tree | f03056e9537b086e96d8895c89ba51a0c64d7051 /js/test/Ice/timeout/Client.js | |
parent | Another fix for ICE-7979 - Ice/ami server shutdown hang (diff) | |
download | ice-c48b468f6588cb0aff170d9a89603c9029886474.tar.bz2 ice-c48b468f6588cb0aff170d9a89603c9029886474.tar.xz ice-c48b468f6588cb0aff170d9a89603c9029886474.zip |
Fix for ICE-8141 - increased the hold time and reduced the sequence size
Diffstat (limited to 'js/test/Ice/timeout/Client.js')
-rw-r--r-- | js/test/Ice/timeout/Client.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/test/Ice/timeout/Client.js b/js/test/Ice/timeout/Client.js index 29757243fde..7fb29bab74f 100644 --- a/js/test/Ice/timeout/Client.js +++ b/js/test/Ice/timeout/Client.js @@ -100,8 +100,8 @@ out.writeLine("ok"); out.write("testing connection timeout... "); to = Test.TimeoutPrx.uncheckedCast(obj.ice_timeout(100 * mult)); - seq = new Uint8Array(10000000); - return timeout.holdAdapter(1000 * mult); + seq = new Uint8Array(1000000); + return timeout.holdAdapter(1500 * mult); } ).then(() => to.sendData(seq) // Expect TimeoutException ).then(() => test(false), |