diff options
author | Benoit Foucher <benoit@zeroc.com> | 2002-07-25 21:00:42 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2002-07-25 21:00:42 +0000 |
commit | ad8a7ff3cbd06d6b40b95bd8637a8e997cc1ca88 (patch) | |
tree | d2f81956121e2adec6e0eace517b06800f118f40 /cpp/src/IcePack/Server.cpp | |
parent | empty prefix is now permissible (diff) | |
download | ice-ad8a7ff3cbd06d6b40b95bd8637a8e997cc1ca88.tar.bz2 ice-ad8a7ff3cbd06d6b40b95bd8637a8e997cc1ca88.tar.xz ice-ad8a7ff3cbd06d6b40b95bd8637a8e997cc1ca88.zip |
Fix.
Diffstat (limited to 'cpp/src/IcePack/Server.cpp')
-rw-r--r-- | cpp/src/IcePack/Server.cpp | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/cpp/src/IcePack/Server.cpp b/cpp/src/IcePack/Server.cpp index b746ef9ae7a..28db1b2874e 100644 --- a/cpp/src/IcePack/Server.cpp +++ b/cpp/src/IcePack/Server.cpp @@ -314,12 +314,11 @@ int adminAdapter->setLocator(locatorProxy); // - // Activate the adapters. + // Activate adapters. // - shutdownOnInterrupt(); adminAdapter->activate(); - locatorAdapter->activate(); locatorRegistryAdapter->activate(); + locatorAdapter->activate(); // // Deploy application desciptor. @@ -342,6 +341,13 @@ int } } + string bundleName = properties->getProperty("IcePack.PrintServersReady"); + if(!bundleName.empty()) + { + cout << bundleName << " ready" << endl; + } + + shutdownOnInterrupt(); communicator()->waitForShutdown(); ignoreInterrupt(); |