diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-12-07 15:34:05 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-12-07 15:34:05 +0000 |
commit | 2257455f83f6908ea24d4f91f26b79e948dcc6f7 (patch) | |
tree | 9645a4383c80dbad461671e4e545c39dae2803b9 /cpp/config/IceGridAdmin.py | |
parent | Fixed bug 1603 (diff) | |
download | ice-2257455f83f6908ea24d4f91f26b79e948dcc6f7.tar.bz2 ice-2257455f83f6908ea24d4f91f26b79e948dcc6f7.tar.xz ice-2257455f83f6908ea24d4f91f26b79e948dcc6f7.zip |
Disabled thread pool warnings
Diffstat (limited to 'cpp/config/IceGridAdmin.py')
-rw-r--r-- | cpp/config/IceGridAdmin.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/config/IceGridAdmin.py b/cpp/config/IceGridAdmin.py index b58aea0c4d4..372971e8b79 100644 --- a/cpp/config/IceGridAdmin.py +++ b/cpp/config/IceGridAdmin.py @@ -15,7 +15,7 @@ from threading import Thread # Set nreplicas to a number N to test replication with N replicas. # nreplicas=0 -#nreplicas=3 +#nreplicas=2 for toplevel in [".", "..", "../..", "../../..", "../../../.."]: toplevel = os.path.normpath(toplevel) @@ -34,6 +34,7 @@ nodeOptions = r' --Ice.Warn.Connections=0' + \ r' --IceGrid.Node.Trace.Activator=0' + \ r' --IceGrid.Node.Trace.Adapter=0' + \ r' --IceGrid.Node.Trace.Server=0' + \ + r' --IceGrid.Node.ThreadPool.SizeWarn=0' + \ r' --IceGrid.Node.PrintServersReady=node' + \ r' --Ice.NullHandleAbort' + \ r' --Ice.ThreadPool.Server.Size=0' + \ @@ -56,7 +57,7 @@ registryOptions = r' --Ice.Warn.Connections=0' + \ r' --IceGrid.Registry.Trace.Server=0' + \ r' --IceGrid.Registry.Trace.Locator=0' + \ r' --Ice.ThreadPool.Server.Size=0 ' + \ - r' --Ice.ThreadPool.Client.SizeWarn=10' + \ + r' --Ice.ThreadPool.Client.SizeWarn=0' + \ r' --Ice.ServerIdleTime=0' + \ r' --IceGrid.Registry.DefaultTemplates=' + os.path.join(toplevel, "config", "templates.xml") |