diff options
author | Benoit Foucher <benoit@zeroc.com> | 2012-06-20 11:24:01 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2012-06-20 11:24:01 +0200 |
commit | 6380bbf4be41baf7100d65f7bf45d02c66767199 (patch) | |
tree | 5ac3d90cb665ad68016d1a413b039fc85c152834 /cpp/src | |
parent | Fixed ICE-4835, round-robin policy bug when nodes are down (diff) | |
download | ice-6380bbf4be41baf7100d65f7bf45d02c66767199.tar.bz2 ice-6380bbf4be41baf7100d65f7bf45d02c66767199.tar.xz ice-6380bbf4be41baf7100d65f7bf45d02c66767199.zip |
Fixed bug ICE-4837, connection monitor exception handling
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Ice/ConnectionMonitor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/ConnectionMonitor.cpp b/cpp/src/Ice/ConnectionMonitor.cpp index 49e3ab2ba59..7d9e43c7a7c 100644 --- a/cpp/src/Ice/ConnectionMonitor.cpp +++ b/cpp/src/Ice/ConnectionMonitor.cpp @@ -128,7 +128,7 @@ IceInternal::ConnectionMonitor::runTimerTask() { (*p)->monitor(now); } - catch(const Exception& ex) + catch(const exception& ex) { IceUtil::Mutex::Lock sync(*this); if(!_instance) @@ -137,7 +137,7 @@ IceInternal::ConnectionMonitor::runTimerTask() } Error out(_instance->initializationData().logger); - out << "exception in connection monitor:\n" << ex; + out << "exception in connection monitor:\n" << ex.what(); } catch(...) { |