diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-10-19 13:01:55 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-10-19 13:01:55 +0000 |
commit | 1ff378dd6746af03c3031664991adafcb5972a34 (patch) | |
tree | 5c188bd3ee2bff12f64ca15788f275957e04ab40 /cpp/src/IceGrid/ReplicaSessionManager.cpp | |
parent | file RubyUtil.cpp was initially added on branch icerb_preview_branch. (diff) | |
download | ice-1ff378dd6746af03c3031664991adafcb5972a34.tar.bz2 ice-1ff378dd6746af03c3031664991adafcb5972a34.tar.xz ice-1ff378dd6746af03c3031664991adafcb5972a34.zip |
Fixes
Diffstat (limited to 'cpp/src/IceGrid/ReplicaSessionManager.cpp')
-rw-r--r-- | cpp/src/IceGrid/ReplicaSessionManager.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/ReplicaSessionManager.cpp b/cpp/src/IceGrid/ReplicaSessionManager.cpp index 28c59984c0a..82adfb54172 100644 --- a/cpp/src/IceGrid/ReplicaSessionManager.cpp +++ b/cpp/src/IceGrid/ReplicaSessionManager.cpp @@ -288,7 +288,7 @@ ReplicaSessionManager::create(const string& name, notifyAll(); } - _thread->tryCreateSession(0); + _thread->tryCreateSession(); } void @@ -308,7 +308,8 @@ ReplicaSessionManager::create(const InternalRegistryPrx& replica) return; } - _thread->tryCreateSession(replica); + _thread->setRegistry(replica); + _thread->tryCreateSession(); } NodePrxSeq |