summaryrefslogtreecommitdiff
path: root/cpp/src/IcePatch/Server.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-09-26 20:05:00 +0000
committerMarc Laukien <marc@zeroc.com>2002-09-26 20:05:00 +0000
commit57ec89e8da9e0d0f7ecd4ed6b144d068513371b1 (patch)
treec5e80d25f5e3b2bcd818d00a1686ccdaa0076a14 /cpp/src/IcePatch/Server.cpp
parentdo not commit servant after destroyObject (diff)
downloadice-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.cpp11
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)
{