diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-06-06 17:00:22 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-06-06 17:00:22 +0000 |
commit | 481152181598d9cff2e68d62983813fb975c23cf (patch) | |
tree | 97a0bb0458a302afab726390b7c790d96a95988d /cpp/test/Ice/binding/Server.cpp | |
parent | migrating to PHP 5.1.4; dropping support for PHP 5.0.x (diff) | |
download | ice-481152181598d9cff2e68d62983813fb975c23cf.tar.bz2 ice-481152181598d9cff2e68d62983813fb975c23cf.tar.xz ice-481152181598d9cff2e68d62983813fb975c23cf.zip |
Fix for bug 435
Diffstat (limited to 'cpp/test/Ice/binding/Server.cpp')
-rw-r--r-- | cpp/test/Ice/binding/Server.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cpp/test/Ice/binding/Server.cpp b/cpp/test/Ice/binding/Server.cpp index f9d69364268..62b9802d960 100644 --- a/cpp/test/Ice/binding/Server.cpp +++ b/cpp/test/Ice/binding/Server.cpp @@ -21,6 +21,9 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) adapter->add(new RemoteCommunicatorI(), id); adapter->activate(); + // Disable ready print for further adapters. + communicator->getProperties()->setProperty("Ice.PrintAdapterReady", "0"); + communicator->waitForShutdown(); return EXIT_SUCCESS; } |