diff options
author | Benoit Foucher <benoit@zeroc.com> | 2014-12-09 11:57:36 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2014-12-09 11:57:36 +0100 |
commit | cffb58b153e0f526c23af7d16f1604e6045fd329 (patch) | |
tree | b3e8906bd7a61a60e4ba0fb62273a3a8d1a766cf /scripts/IceGridAdmin.py | |
parent | Workaround for ICE-6073 (diff) | |
download | ice-cffb58b153e0f526c23af7d16f1604e6045fd329.tar.bz2 ice-cffb58b153e0f526c23af7d16f1604e6045fd329.tar.xz ice-cffb58b153e0f526c23af7d16f1604e6045fd329.zip |
Fixed bogus IceGrid thread pool configuration
Diffstat (limited to 'scripts/IceGridAdmin.py')
-rw-r--r-- | scripts/IceGridAdmin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/IceGridAdmin.py b/scripts/IceGridAdmin.py index 8e5b6e1f555..f71f546928a 100644 --- a/scripts/IceGridAdmin.py +++ b/scripts/IceGridAdmin.py @@ -31,7 +31,7 @@ nodeOptions = r' --Ice.Warn.Connections=0' + \ r' --IceGrid.Node.ThreadPool.SizeWarn=0' + \ r' --IceGrid.Node.PrintServersReady=node1' + \ r' --Ice.NullHandleAbort' + \ - r' --Ice.ThreadPool.Server.Size=0' + \ + r' --Ice.ThreadPool.Server.Size=1' + \ r' --Ice.ServerIdleTime=0' registryOptions = r' --Ice.Warn.Connections=0' + \ @@ -53,7 +53,7 @@ registryOptions = r' --Ice.Warn.Connections=0' + \ r' --IceGrid.Registry.Trace.Server=0' + \ r' --IceGrid.Registry.Trace.Locator=0' + \ r' --IceGrid.Registry.SessionTimeout=5' + \ - r' --Ice.ThreadPool.Server.Size=0 ' + \ + r' --Ice.ThreadPool.Server.Size=1 ' + \ r' --Ice.ThreadPool.Client.SizeWarn=0' + \ r' --IceGrid.Registry.Client.ThreadPool.SizeWarn=0' + \ r' --Ice.ServerIdleTime=0' + \ |