diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-03-28 18:23:22 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-03-28 18:23:22 +0000 |
commit | 8778395bba7ef3ae0c04e181f2334db0543a2bd0 (patch) | |
tree | 961dca5d0f82988f6ddca5c2f022a9a2e19c4b58 /cppe/config/TestUtil.py | |
parent | Add ICEE ifdef (diff) | |
download | ice-8778395bba7ef3ae0c04e181f2334db0543a2bd0.tar.bz2 ice-8778395bba7ef3ae0c04e181f2334db0543a2bd0.tar.xz ice-8778395bba7ef3ae0c04e181f2334db0543a2bd0.zip |
Removed ThreadPool & UDP
Diffstat (limited to 'cppe/config/TestUtil.py')
-rw-r--r-- | cppe/config/TestUtil.py | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/cppe/config/TestUtil.py b/cppe/config/TestUtil.py index e310ec1c21b..18240277126 100644 --- a/cppe/config/TestUtil.py +++ b/cppe/config/TestUtil.py @@ -29,8 +29,8 @@ compress = 1 # thread per connection mode. # -threadPerConnection = 0 -#threadPerConnection = 1 +#threadPerConnection = 0 +threadPerConnection = 1 # # If you don't set "host" below, then the Ice library will try to find @@ -227,11 +227,6 @@ if compress: serverProtocol += " --Ice.Override.Compress" clientServerProtocol += " --Ice.Override.Compress" -if threadPerConnection: - clientProtocol += " --Ice.ThreadPerConnection" - serverProtocol += " --Ice.ThreadPerConnection" - clientServerProtocol += " --Ice.ThreadPerConnection" - if host != "": defaultHost = " --Ice.Default.Host=" + host else: @@ -240,9 +235,7 @@ else: 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=3" + \ - " --Ice.ThreadPool.Server.SizeWarn=0" + " --Ice.Warn.Connections --Ice.ServerIdleTime=30" clientOptions = clientProtocol + defaultHost + commonClientOptions serverOptions = serverProtocol + defaultHost + commonServerOptions |