diff options
Diffstat (limited to 'java/config/TestUtil.py')
-rw-r--r-- | java/config/TestUtil.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/java/config/TestUtil.py b/java/config/TestUtil.py index deb64be9389..918960c9b6f 100644 --- a/java/config/TestUtil.py +++ b/java/config/TestUtil.py @@ -135,11 +135,13 @@ if host != "": else: defaultHost = "" -commonServerOptions = " --Ice.PrintAdapterReady" + \ +commonClientOptions = " --Ice.NullHandleAbort --Ice.Warn.Connections" + +commonServerOptions = " --Ice.PrintAdapterReady --Ice.NullHandleAbort" + \ " --Ice.Warn.Connections --Ice.ServerIdleTime=30" + \ " --Ice.ThreadPool.Server.Size=1 --Ice.ThreadPool.Server.SizeMax=10" -clientOptions = clientProtocol + defaultHost +clientOptions = clientProtocol + defaultHost + commonClientOptions serverOptions = serverProtocol + defaultHost + commonServerOptions clientServerOptions = clientServerProtocol + defaultHost + commonServerOptions collocatedOptions = clientServerProtocol + defaultHost |