diff options
author | Matthew Newhook <matthew@zeroc.com> | 2006-09-05 09:17:33 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2006-09-05 09:17:33 +0000 |
commit | 4202d922fd817381902b533e9d3b4669ea97bfc3 (patch) | |
tree | fb7f5b49d484d6f26be4d7d3695af6eeef670162 /cs/config/TestUtil.py | |
parent | fix bug with Glacier2 router test. (diff) | |
download | ice-4202d922fd817381902b533e9d3b4669ea97bfc3.tar.bz2 ice-4202d922fd817381902b533e9d3b4669ea97bfc3.tar.xz ice-4202d922fd817381902b533e9d3b4669ea97bfc3.zip |
fix bug with Glacier2 router test.
Diffstat (limited to 'cs/config/TestUtil.py')
-rw-r--r-- | cs/config/TestUtil.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/cs/config/TestUtil.py b/cs/config/TestUtil.py index b1fe3bd7419..2cc10482d67 100644 --- a/cs/config/TestUtil.py +++ b/cs/config/TestUtil.py @@ -346,12 +346,10 @@ commonServerOptions = " --Ice.PrintProcessId --Ice.PrintAdapterReady --Ice.NullH " --Ice.ThreadPool.Server.Size=1 --Ice.ThreadPool.Server.SizeMax=3" + \ " --Ice.ThreadPool.Server.SizeWarn=0" -cppCommonClientOptions = " --Ice.Warn.Connections" +cppCommonClientOptions = " --Ice.NullHandleAbort --Ice.Warn.Connections" -cppCommonServerOptions = " --Ice.PrintAdapterReady" + \ - " --Ice.Warn.Connections --Ice.ServerIdleTime=30" + \ - " --Ice.ThreadPool.Server.Size=1 --Ice.ThreadPool.Server.SizeMax=3" + \ - " --Ice.ThreadPool.Server.SizeWarn=0" +cppCommonServerOptions = " --Ice.PrintProcessId --Ice.PrintAdapterReady --Ice.NullHandleAbort" + \ + " --Ice.Warn.Connections --Ice.ServerIdleTime=30" cppClientOptions = cppClientProtocol + defaultHost + cppCommonClientOptions cppServerOptions = cppServerProtocol + defaultHost + cppCommonServerOptions |