summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/exceptions/Server.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2002-11-23 14:37:46 +0000
committerBenoit Foucher <benoit@zeroc.com>2002-11-23 14:37:46 +0000
commit470a28fce573ec04aed074f9114295662114c870 (patch)
tree84ea896c61cd7305401890c727e00061c5c624ad /cpp/test/Ice/exceptions/Server.cpp
parent- Added DBEnvironment::openDBWithTxn (required by BerkeleyDB 4.1.2) (diff)
downloadice-470a28fce573ec04aed074f9114295662114c870.tar.bz2
ice-470a28fce573ec04aed074f9114295662114c870.tar.xz
ice-470a28fce573ec04aed074f9114295662114c870.zip
- Added DBEnvironment::openDBWithTxn (required by BerkeleyDB 4.1.2)
- Improved dispatch exception warnings. - Fix the exception test to disable dispatch warnings. - Fixed a bug in IcePack where a server adapter would wait for the server activation even though the node was being shutdown. - Fixed XML transform tests to use openDBWithTxn.
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 49a7d74eacd..808f744be08 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.Warn.Connections", "0");
+ properties->setProperty("Ice.Warn.Dispatch", "0");
communicator->getProperties()->setProperty("TestAdapter.Endpoints", "default -p 12345 -t 2000");
Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapter("TestAdapter");
Ice::ObjectPtr object = new ThrowerI(adapter);