diff options
author | Marc Laukien <marc@zeroc.com> | 2004-02-17 17:07:49 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2004-02-17 17:07:49 +0000 |
commit | 4d36ecea8fa70c0138afd8601f6a4483e108cd0b (patch) | |
tree | 1006866237467d876553fa3075c45446af4d96a8 /cpp/config/TestUtil.py | |
parent | file DescriptorParser.h was initially added on branch icepack_refactoring. (diff) | |
download | ice-4d36ecea8fa70c0138afd8601f6a4483e108cd0b.tar.bz2 ice-4d36ecea8fa70c0138afd8601f6a4483e108cd0b.tar.xz ice-4d36ecea8fa70c0138afd8601f6a4483e108cd0b.zip |
more and more AMI
Diffstat (limited to 'cpp/config/TestUtil.py')
-rw-r--r-- | cpp/config/TestUtil.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/config/TestUtil.py b/cpp/config/TestUtil.py index 67832146e03..4efbf22ba84 100644 --- a/cpp/config/TestUtil.py +++ b/cpp/config/TestUtil.py @@ -200,11 +200,13 @@ if host != "": else: defaultHost = "" -commonServerOptions = " --Ice.PrintProcessId --Ice.PrintAdapterReady" + \ +commonClientOptions = " --Ice.NullHandleAbort --Ice.Warn.Connections" + +commonServerOptions = " --Ice.PrintProcessId --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 |