diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-09-12 12:22:04 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-09-12 12:22:04 +0000 |
commit | 03afb29ad57e2671da0ea3d10bc21c22d8a15005 (patch) | |
tree | d325a99ca5c4048f01648cb0b2c6525d530dae51 /cpp/src/IceGrid/Database.cpp | |
parent | Fixes (diff) | |
download | ice-03afb29ad57e2671da0ea3d10bc21c22d8a15005.tar.bz2 ice-03afb29ad57e2671da0ea3d10bc21c22d8a15005.tar.xz ice-03afb29ad57e2671da0ea3d10bc21c22d8a15005.zip |
Fixes
Diffstat (limited to 'cpp/src/IceGrid/Database.cpp')
-rw-r--r-- | cpp/src/IceGrid/Database.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/Database.cpp b/cpp/src/IceGrid/Database.cpp index 1f777a3675f..42082b7fddc 100644 --- a/cpp/src/IceGrid/Database.cpp +++ b/cpp/src/IceGrid/Database.cpp @@ -628,7 +628,14 @@ Database::removeApplication(const string& name, AdminSessionI* session) if(session) { - for_each(entries.begin(), entries.end(), IceUtil::voidMemFun(&ServerEntry::sync)); + try + { + for_each(entries.begin(), entries.end(), IceUtil::voidMemFun(&ServerEntry::sync)); + } + catch(const DeploymentException&) + { + // Ignore, this is traced by the node cache. + } } else { |