diff options
author | Matthew Newhook <matthew@zeroc.com> | 2006-09-05 05:16:35 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2006-09-05 05:16:35 +0000 |
commit | 500aee95b9b3f9d4229e69616dfb3bcd88be07e3 (patch) | |
tree | 4fa7789dedc1b5367a453f00850152180bd7ae4f /java/config/TestUtil.py | |
parent | Well known object fixes (diff) | |
download | ice-500aee95b9b3f9d4229e69616dfb3bcd88be07e3.tar.bz2 ice-500aee95b9b3f9d4229e69616dfb3bcd88be07e3.tar.xz ice-500aee95b9b3f9d4229e69616dfb3bcd88be07e3.zip |
fix bug with Glacier2 router test.
Diffstat (limited to 'java/config/TestUtil.py')
-rw-r--r-- | java/config/TestUtil.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/java/config/TestUtil.py b/java/config/TestUtil.py index 20da9c30c9f..9308f293771 100644 --- a/java/config/TestUtil.py +++ b/java/config/TestUtil.py @@ -375,12 +375,10 @@ serverOptions = serverProtocol + defaultHost + commonServerOptions clientServerOptions = clientServerProtocol + defaultHost + commonServerOptions collocatedOptions = clientServerProtocol + defaultHost -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 |