diff options
author | Benoit Foucher <benoit@zeroc.com> | 2014-11-27 19:33:19 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2014-11-27 19:33:19 +0100 |
commit | 4afb37acb33d1f17e2b36c6e91bb88a8661b9843 (patch) | |
tree | d73bea45aa1de6add8acc92eb7449f65d5a77708 /cpp | |
parent | Util.py isDebug (diff) | |
download | ice-4afb37acb33d1f17e2b36c6e91bb88a8661b9843.tar.bz2 ice-4afb37acb33d1f17e2b36c6e91bb88a8661b9843.tar.xz ice-4afb37acb33d1f17e2b36c6e91bb88a8661b9843.zip |
Fix for ICE-5972: bumped the number of retries
Diffstat (limited to 'cpp')
-rwxr-xr-x | cpp/test/IceDiscovery/simple/run.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/IceDiscovery/simple/run.py b/cpp/test/IceDiscovery/simple/run.py index 9252524d7bb..842b644e959 100755 --- a/cpp/test/IceDiscovery/simple/run.py +++ b/cpp/test/IceDiscovery/simple/run.py @@ -26,8 +26,8 @@ client = os.path.join(os.getcwd(), "client") num = 3 args = " --Ice.Plugin.IceDiscovery=IceDiscovery:createIceDiscovery" -args += " --IceDiscovery.Timeout=100" -args += " --IceDiscovery.RetryCount=1" +args += " --IceDiscovery.Timeout=30" +args += " --IceDiscovery.RetryCount=5" if not TestUtil.ipv6: args += " --IceDiscovery.Interface=127.0.0.1" elif TestUtil.isDarwin(): |