diff options
author | Benoit Foucher <benoit@zeroc.com> | 2007-01-18 10:59:12 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2007-01-18 10:59:12 +0000 |
commit | 0739387a9af5d9245723bda0a8ded13dbc52637f (patch) | |
tree | 3ef5a656a24907936749ed9abc40aeb728c1e63e /cpp/src/IceGrid/NodeI.cpp | |
parent | Fixed bug 1679 (diff) | |
download | ice-0739387a9af5d9245723bda0a8ded13dbc52637f.tar.bz2 ice-0739387a9af5d9245723bda0a8ded13dbc52637f.tar.xz ice-0739387a9af5d9245723bda0a8ded13dbc52637f.zip |
Fixed bug where the node load info could be unitilized for sometime after
the node session creation
Diffstat (limited to 'cpp/src/IceGrid/NodeI.cpp')
-rw-r--r-- | cpp/src/IceGrid/NodeI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/NodeI.cpp b/cpp/src/IceGrid/NodeI.cpp index 62ddfa07d36..97a6a2cba01 100644 --- a/cpp/src/IceGrid/NodeI.cpp +++ b/cpp/src/IceGrid/NodeI.cpp @@ -640,7 +640,7 @@ NodeI::getRedirectErrToOut() const NodeSessionPrx NodeI::registerWithRegistry(const InternalRegistryPrx& registry) { - return registry->registerNode(_platform.getInternalNodeInfo(), _proxy); + return registry->registerNode(_platform.getInternalNodeInfo(), _proxy, _platform.getLoadInfo()); } void |