diff options
author | Benoit Foucher <benoit@zeroc.com> | 2020-05-15 14:30:57 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2020-05-15 14:30:57 +0200 |
commit | 827fb617431b61f1fe811139f7b7f33beb45dbf0 (patch) | |
tree | 5654bd897a56c3487d0bb4cea7ae7bd5c0b4c7d7 /csharp | |
parent | Added synchronization for _sessions data member, fixes #843 (diff) | |
download | ice-827fb617431b61f1fe811139f7b7f33beb45dbf0.tar.bz2 ice-827fb617431b61f1fe811139f7b7f33beb45dbf0.tar.xz ice-827fb617431b61f1fe811139f7b7f33beb45dbf0.zip |
Bumped sleep time and decreased timeout, fixes #850v3.7.4
Diffstat (limited to 'csharp')
-rw-r--r-- | csharp/test/Ice/retry/AllTests.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/csharp/test/Ice/retry/AllTests.cs b/csharp/test/Ice/retry/AllTests.cs index e6c45956770..0b039a395b3 100644 --- a/csharp/test/Ice/retry/AllTests.cs +++ b/csharp/test/Ice/retry/AllTests.cs @@ -279,10 +279,10 @@ namespace Ice // important here is to make sure there are 4 retries and that no calls succeed to // ensure retries with the old connection timeout semantics work. Test.RetryPrx retryWithTimeout = - (Test.RetryPrx)retry1.ice_invocationTimeout(-2).ice_timeout(200); + (Test.RetryPrx)retry1.ice_invocationTimeout(-2).ice_timeout(100); try { - retryWithTimeout.sleep(500); + retryWithTimeout.sleep(1000); test(false); } catch(Ice.TimeoutException) |