diff options
author | Benoit Foucher <benoit@zeroc.com> | 2005-10-25 20:45:35 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2005-10-25 20:45:35 +0000 |
commit | d89f4f58ea4ab21661540c33f5e3481c67a758b1 (patch) | |
tree | 4f9a09fb53e573863c29b62d6e7777eb83ee8873 /cpp/src/IceGrid/IceGridNode.cpp | |
parent | Fix some SRPM generation bugs, some copy commands and removed buildrequires (diff) | |
download | ice-d89f4f58ea4ab21661540c33f5e3481c67a758b1.tar.bz2 ice-d89f4f58ea4ab21661540c33f5e3481c67a758b1.tar.xz ice-d89f4f58ea4ab21661540c33f5e3481c67a758b1.zip |
Fixed a bug where IcePatch2 couldn't be deployed and used in a new
application.
Fixed deadlock.
Added automatic patching after adding an application.
Diffstat (limited to 'cpp/src/IceGrid/IceGridNode.cpp')
-rw-r--r-- | cpp/src/IceGrid/IceGridNode.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/IceGridNode.cpp b/cpp/src/IceGrid/IceGridNode.cpp index 72f16891863..abd8efb0ad9 100644 --- a/cpp/src/IceGrid/IceGridNode.cpp +++ b/cpp/src/IceGrid/IceGridNode.cpp @@ -292,9 +292,13 @@ NodeService::start(int argc, char* argv[]) // termination listener instead? // properties->setProperty("Ice.ServerIdleTime", "0"); - if(properties->getPropertyAsIntWithDefault("Ice.ThreadPool.Server.Size", 5) <= 5) + if(properties->getPropertyAsIntWithDefault("Ice.ThreadPool.Server.Size", 10) <= 10) { - properties->setProperty("Ice.ThreadPool.Server.Size", "5"); + properties->setProperty("Ice.ThreadPool.Server.Size", "10"); + } + if(properties->getPropertyAsIntWithDefault("Ice.ThreadPool.Server.SizeMax", 100) <= 100) + { + properties->setProperty("Ice.ThreadPool.Server.SizeMax", "100"); } // |