diff options
author | Marc Laukien <marc@zeroc.com> | 2004-02-16 14:50:37 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2004-02-16 14:50:37 +0000 |
commit | 8582bf17281769d6b58618018f2119f9dd520ac7 (patch) | |
tree | f714107e952bcb13c288b417c95cf6722825c2b4 /cpp/config/TestUtil.py | |
parent | fix (diff) | |
download | ice-8582bf17281769d6b58618018f2119f9dd520ac7.tar.bz2 ice-8582bf17281769d6b58618018f2119f9dd520ac7.tar.xz ice-8582bf17281769d6b58618018f2119f9dd520ac7.zip |
fixes
Diffstat (limited to 'cpp/config/TestUtil.py')
-rw-r--r-- | cpp/config/TestUtil.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/config/TestUtil.py b/cpp/config/TestUtil.py index 3594a4cddbc..67832146e03 100644 --- a/cpp/config/TestUtil.py +++ b/cpp/config/TestUtil.py @@ -200,8 +200,9 @@ if host != "": else: defaultHost = "" -commonServerOptions = " --Ice.PrintProcessId --Ice.PrintAdapterReady --Ice.ThreadPool.Server.Size=3" + \ - " --Ice.Warn.Connections " +commonServerOptions = " --Ice.PrintProcessId --Ice.PrintAdapterReady" + \ + " --Ice.Warn.Connections --Ice.ServerIdleTime=30" + \ + " --Ice.ThreadPool.Server.Size=1 --Ice.ThreadPool.Server.SizeMax=10" clientOptions = clientProtocol + defaultHost serverOptions = serverProtocol + defaultHost + commonServerOptions |