summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/NodeCache.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2006-06-02 16:11:51 +0000
committerBenoit Foucher <benoit@zeroc.com>2006-06-02 16:11:51 +0000
commit8d90c43bd49c728f3c553a4e4d2ad7d25367a872 (patch)
tree078cd0193fcdfa12936eae5a6372ae750ecb79f7 /cpp/src/IceGrid/NodeCache.cpp
parentwarm up JIT compiler before measuring latency (diff)
downloadice-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.cpp9
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
{