diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-06-02 16:11:51 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-06-02 16:11:51 +0000 |
commit | 8d90c43bd49c728f3c553a4e4d2ad7d25367a872 (patch) | |
tree | 078cd0193fcdfa12936eae5a6372ae750ecb79f7 /cpp/src/IceGrid/NodeCache.cpp | |
parent | warm up JIT compiler before measuring latency (diff) | |
download | ice-8d90c43bd49c728f3c553a4e4d2ad7d25367a872.tar.bz2 ice-8d90c43bd49c728f3c553a4e4d2ad7d25367a872.tar.xz ice-8d90c43bd49c728f3c553a4e4d2ad7d25367a872.zip |
Bug fixes
Diffstat (limited to 'cpp/src/IceGrid/NodeCache.cpp')
-rw-r--r-- | cpp/src/IceGrid/NodeCache.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/NodeCache.cpp b/cpp/src/IceGrid/NodeCache.cpp index f41506fa8aa..0ff9ededd31 100644 --- a/cpp/src/IceGrid/NodeCache.cpp +++ b/cpp/src/IceGrid/NodeCache.cpp @@ -270,7 +270,14 @@ NodeEntry::setSession(const NodeSessionIPtr& session) entries.push_back(q->second); } } - for_each(entries.begin(), entries.end(), IceUtil::voidMemFun(&ServerEntry::sync)); + + try + { + for_each(entries.begin(), entries.end(), IceUtil::voidMemFun(&ServerEntry::sync)); + } + catch(const DeploymentException&) + { + } } else { |