diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-07-27 13:20:03 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-07-27 13:20:03 +0000 |
commit | dad0bda0d462b4730b168befd187ca43446f12e7 (patch) | |
tree | 1a964dc5a3bd2c945e0ee165ddda55c3e4281157 /cpp/src/IceGrid/NodeSessionI.cpp | |
parent | Improved __checkMode (diff) | |
download | ice-dad0bda0d462b4730b168befd187ca43446f12e7.tar.bz2 ice-dad0bda0d462b4730b168befd187ca43446f12e7.tar.xz ice-dad0bda0d462b4730b168befd187ca43446f12e7.zip |
More IceGrid replication improvements.
Diffstat (limited to 'cpp/src/IceGrid/NodeSessionI.cpp')
-rw-r--r-- | cpp/src/IceGrid/NodeSessionI.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/cpp/src/IceGrid/NodeSessionI.cpp b/cpp/src/IceGrid/NodeSessionI.cpp index 349f7c0abf9..dd30db0f798 100644 --- a/cpp/src/IceGrid/NodeSessionI.cpp +++ b/cpp/src/IceGrid/NodeSessionI.cpp @@ -87,12 +87,6 @@ NodeSessionI::getServers(const Ice::Current& current) const return _database->getAllNodeServers(_name); } -InternalRegistryPrxSeq -NodeSessionI::getReplicas(const Ice::Current& current) const -{ - return _database->getReplicas(); -} - void NodeSessionI::destroy(const Ice::Current& current) { @@ -104,7 +98,7 @@ NodeSessionI::destroy(const Ice::Current& current) _destroy = true; - _database->removeNode(_name); + _database->removeNode(_name, this, !current.adapter); if(current.adapter) { |