summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/NodeSessionManager.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2008-09-26 14:04:54 +0200
committerBenoit Foucher <benoit@zeroc.com>2008-09-26 14:04:54 +0200
commita3c9dfeead519e87ba197e5e66b1013f39fa4366 (patch)
treea1bb69cdea16ca854173a2e3241b242aacf1b14e /cpp/src/IceGrid/NodeSessionManager.cpp
parentFixed locator potential hang when resolving round-robin replica group which c... (diff)
downloadice-a3c9dfeead519e87ba197e5e66b1013f39fa4366.tar.bz2
ice-a3c9dfeead519e87ba197e5e66b1013f39fa4366.tar.xz
ice-a3c9dfeead519e87ba197e5e66b1013f39fa4366.zip
IceGrid fixes to ensure the registry/node don't wait too long if a replica becomes unreachable
Diffstat (limited to 'cpp/src/IceGrid/NodeSessionManager.cpp')
-rw-r--r--cpp/src/IceGrid/NodeSessionManager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/NodeSessionManager.cpp b/cpp/src/IceGrid/NodeSessionManager.cpp
index 06ae7828d3f..066b144b0a9 100644
--- a/cpp/src/IceGrid/NodeSessionManager.cpp
+++ b/cpp/src/IceGrid/NodeSessionManager.cpp
@@ -581,7 +581,7 @@ NodeSessionManager::createdSession(const NodeSessionPrx& session)
//
for(vector<NodeSessionKeepAliveThreadPtr>::const_iterator p = sessions.begin(); p != sessions.end(); ++p)
{
- (*p)->tryCreateSession(true);
+ (*p)->tryCreateSession(true, IceUtil::Time::seconds(5));
}
}