diff options
author | Benoit Foucher <benoit@zeroc.com> | 2019-09-24 13:37:44 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2019-09-24 15:33:14 +0200 |
commit | f36869725c29a23a903a5533ff18c86c55092355 (patch) | |
tree | b1630868a1932d3378dea4746eb135350134d1a8 /csharp/test | |
parent | Fix DK 13 build failures (diff) | |
download | ice-f36869725c29a23a903a5533ff18c86c55092355.tar.bz2 ice-f36869725c29a23a903a5533ff18c86c55092355.tar.xz ice-f36869725c29a23a903a5533ff18c86c55092355.zip |
Fix for invocation timeout sporadic test failure, fixes #547
Diffstat (limited to 'csharp/test')
-rw-r--r-- | csharp/test/Ice/timeout/AllTests.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/csharp/test/Ice/timeout/AllTests.cs b/csharp/test/Ice/timeout/AllTests.cs index 3f5b4a5ba99..633f99e6920 100644 --- a/csharp/test/Ice/timeout/AllTests.cs +++ b/csharp/test/Ice/timeout/AllTests.cs @@ -180,7 +180,7 @@ namespace Ice test(connection == to.ice_getConnection()); try { - to.sleep(500); + to.sleep(1000); test(false); } catch(Ice.InvocationTimeoutException) @@ -205,7 +205,7 @@ namespace Ice // Test.TimeoutPrx to = Test.TimeoutPrxHelper.uncheckedCast(obj.ice_invocationTimeout(100)); Callback cb = new Callback(); - to.begin_sleep(500).whenCompleted( + to.begin_sleep(1000).whenCompleted( () => { test(false); |