summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/IceGridNode.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2006-06-27 10:48:31 +0000
committerBenoit Foucher <benoit@zeroc.com>2006-06-27 10:48:31 +0000
commit144e9fe4e514ae4c1fe3bdc877a00d4787be31c9 (patch)
tree0cdd29a7145dfc049efd01474cafeea03567008b /cpp/src/IceGrid/IceGridNode.cpp
parentFixed bug 710 & 1139 (diff)
downloadice-144e9fe4e514ae4c1fe3bdc877a00d4787be31c9.tar.bz2
ice-144e9fe4e514ae4c1fe3bdc877a00d4787be31c9.tar.xz
ice-144e9fe4e514ae4c1fe3bdc877a00d4787be31c9.zip
Fixed bug 710
Diffstat (limited to 'cpp/src/IceGrid/IceGridNode.cpp')
-rw-r--r--cpp/src/IceGrid/IceGridNode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/IceGridNode.cpp b/cpp/src/IceGrid/IceGridNode.cpp
index 7323af304cd..fb0f5137df2 100644
--- a/cpp/src/IceGrid/IceGridNode.cpp
+++ b/cpp/src/IceGrid/IceGridNode.cpp
@@ -253,7 +253,7 @@ NodeService::start(int argc, char* argv[])
//
// Warn the user that setting Ice.ThreadPool.Server isn't useful.
//
- if(properties->getPropertyAsIntWithDefault("Ice.ThreadPool.Server.Size", 0) > 0)
+ if(!nowarn && properties->getPropertyAsIntWithDefault("Ice.ThreadPool.Server.Size", 0) > 0)
{
Warning out(communicator()->getLogger());
out << "setting `Ice.ThreadPool.Server.Size' is not useful,\n";