diff options
author | Benoit Foucher <benoit@zeroc.com> | 2002-11-21 21:50:31 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2002-11-21 21:50:31 +0000 |
commit | 150351e4ebf211f612239028198d56f939bfa937 (patch) | |
tree | c8476b268657e02fe982fefc93eb17c1217edbe2 /cpp/test/Ice/exceptions/Server.cpp | |
parent | workaround for JDK bug in getLocalHost; bug fix (diff) | |
download | ice-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.cpp | 2 |
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); |