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 /python | |
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 'python')
-rw-r--r-- | python/test/Ice/timeout/AllTests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/test/Ice/timeout/AllTests.py b/python/test/Ice/timeout/AllTests.py index e676e05dac6..3fde84b9f05 100644 --- a/python/test/Ice/timeout/AllTests.py +++ b/python/test/Ice/timeout/AllTests.py @@ -148,7 +148,7 @@ def allTestsWithController(helper, communicator, controller): to = Test.TimeoutPrx.uncheckedCast(obj.ice_invocationTimeout(100)) test(connection == to.ice_getConnection()) try: - to.sleep(500) + to.sleep(1000) test(False) except Ice.InvocationTimeoutException: pass |