diff options
author | Marc Laukien <marc@zeroc.com> | 2002-04-16 23:45:16 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-04-16 23:45:16 +0000 |
commit | cb721b45d761ccb7fa3bb873e3d567dd665b1f9f (patch) | |
tree | 75bd19e8d32751ff178093f47b4ce87e83d4b6d0 /cpp/src/IceStorm/Server.cpp | |
parent | align with C++ - fixes for the thread pool (diff) | |
download | ice-cb721b45d761ccb7fa3bb873e3d567dd665b1f9f.tar.bz2 ice-cb721b45d761ccb7fa3bb873e3d567dd665b1f9f.tar.xz ice-cb721b45d761ccb7fa3bb873e3d567dd665b1f9f.zip |
IcePatch improvements; Ice.PrintAdapterReady timing fix
Diffstat (limited to 'cpp/src/IceStorm/Server.cpp')
-rw-r--r-- | cpp/src/IceStorm/Server.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/src/IceStorm/Server.cpp b/cpp/src/IceStorm/Server.cpp index 92d4d015acb..17e1ef3d1de 100644 --- a/cpp/src/IceStorm/Server.cpp +++ b/cpp/src/IceStorm/Server.cpp @@ -96,9 +96,12 @@ IceStorm::Server::runFreeze(int argc, char* argv[], const Freeze::DBEnvironmentP "IceStorm.TopicManager.Endpoints"); TopicManagerIPtr manager = new TopicManagerI(communicator(), adapter, traceLevels, dbEnv, dbTopicManager); adapter->add(manager, stringToIdentity("TopicManager")); - adapter->activate(); + // + // Everything ok, let's go. + // shutdownOnInterrupt(); + adapter->activate(); communicator()->waitForShutdown(); ignoreInterrupt(); |