diff options
author | Marc Laukien <marc@zeroc.com> | 2002-09-26 20:05:00 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-09-26 20:05:00 +0000 |
commit | 57ec89e8da9e0d0f7ecd4ed6b144d068513371b1 (patch) | |
tree | c5e80d25f5e3b2bcd818d00a1686ccdaa0076a14 /cpp/src/IcePatch/Server.cpp | |
parent | do not commit servant after destroyObject (diff) | |
download | ice-57ec89e8da9e0d0f7ecd4ed6b144d068513371b1.tar.bz2 ice-57ec89e8da9e0d0f7ecd4ed6b144d068513371b1.tar.xz ice-57ec89e8da9e0d0f7ecd4ed6b144d068513371b1.zip |
rewrote connection validation code
Diffstat (limited to 'cpp/src/IcePatch/Server.cpp')
-rw-r--r-- | cpp/src/IcePatch/Server.cpp | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/cpp/src/IcePatch/Server.cpp b/cpp/src/IcePatch/Server.cpp index 6bc7de74198..ad708191b18 100644 --- a/cpp/src/IcePatch/Server.cpp +++ b/cpp/src/IcePatch/Server.cpp @@ -198,20 +198,13 @@ IcePatch::Updater::run() // Just loop if we're busy. // } - catch(const ConnectFailedException&) + catch(const Exception&) { // - // This exception can be raised if the adapter is shutdown - // while this thread is still running. In such case, we - // terminate this thread. + // Bail out on any other exception. // break; } - catch(const Exception& ex) - { - Error out(_logger); - out << "exception during update:\n" << ex; - } if(_destroy) { |