summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/exceptions/Server.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2002-11-21 21:50:31 +0000
committerBenoit Foucher <benoit@zeroc.com>2002-11-21 21:50:31 +0000
commit150351e4ebf211f612239028198d56f939bfa937 (patch)
treec8476b268657e02fe982fefc93eb17c1217edbe2 /cpp/test/Ice/exceptions/Server.cpp
parentworkaround for JDK bug in getLocalHost; bug fix (diff)
downloadice-150351e4ebf211f612239028198d56f939bfa937.tar.bz2
ice-150351e4ebf211f612239028198d56f939bfa937.tar.xz
ice-150351e4ebf211f612239028198d56f939bfa937.zip
Changed warning properties (Ice.ConnectionWarning -> Ice.Warn.Connection)
Added Ice.Warn.Dispatch warnings.
Diffstat (limited to 'cpp/test/Ice/exceptions/Server.cpp')
-rw-r--r--cpp/test/Ice/exceptions/Server.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Ice/exceptions/Server.cpp b/cpp/test/Ice/exceptions/Server.cpp
index d0c62fb2bad..d2d1d35865e 100644
--- a/cpp/test/Ice/exceptions/Server.cpp
+++ b/cpp/test/Ice/exceptions/Server.cpp
@@ -21,7 +21,7 @@ int
run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
{
Ice::PropertiesPtr properties = communicator->getProperties();
- properties->setProperty("Ice.ConnectionWarnings", "0");
+ properties->setProperty("Ice.Warn.Connection", "0");
communicator->getProperties()->setProperty("TestAdapter.Endpoints", "default -p 12345 -t 2000");
Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapter("TestAdapter");
Ice::ObjectPtr object = new ThrowerI(adapter);