diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-07-21 15:04:01 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-07-21 15:04:01 +0000 |
commit | 624535eba6e55bbe5ab85d1a6e3e9fde88bb1e99 (patch) | |
tree | 9c7c69337acbda02b9320b32106445d0956b48f4 /cpp/src/IceGrid/ReplicaSessionManager.cpp | |
parent | Initial implementation of the IceGrid registry replication. (diff) | |
download | ice-624535eba6e55bbe5ab85d1a6e3e9fde88bb1e99.tar.bz2 ice-624535eba6e55bbe5ab85d1a6e3e9fde88bb1e99.tar.xz ice-624535eba6e55bbe5ab85d1a6e3e9fde88bb1e99.zip |
Win32 fixes
Diffstat (limited to 'cpp/src/IceGrid/ReplicaSessionManager.cpp')
-rw-r--r-- | cpp/src/IceGrid/ReplicaSessionManager.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/IceGrid/ReplicaSessionManager.cpp b/cpp/src/IceGrid/ReplicaSessionManager.cpp index ec55bd2c6b6..486cba6f700 100644 --- a/cpp/src/IceGrid/ReplicaSessionManager.cpp +++ b/cpp/src/IceGrid/ReplicaSessionManager.cpp @@ -144,7 +144,7 @@ ReplicaSessionKeepAliveThread::run() { session->destroy(); } - catch(const Ice::LocalException& ex) + catch(const Ice::LocalException&) { // // TODO: XXX: TRACE? @@ -207,14 +207,14 @@ ReplicaSessionKeepAliveThread::keepAlive(const ReplicaSessionPrx& session) { _database->getTraceLevels()->logger->error("a replica with the same name is already registered and active"); } - catch(const Ice::LocalException& ex) + catch(const Ice::LocalException&) { // // TODO: FIX THIS SHOULD BE A TRACE // - ostringstream os; - os << "couldn't contact the IceGrid registry:\n" << ex; - _database->getTraceLevels()->logger->warning(os.str()); +// ostringstream os; +// os << "couldn't contact the IceGrid registry:\n" << ex; +// _database->getTraceLevels()->logger->warning(os.str()); } } |