diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-09-22 14:30:53 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-09-22 14:30:53 +0000 |
commit | 059ea645ef16d220ff93cc2f6fd2316974d86a3b (patch) | |
tree | b724aa212cbb5e102645b6abbb10f1ce08b430f3 /cpp/src/IceGrid/InternalRegistryI.cpp | |
parent | fix version retrieval to sync with change to config/Make.rules (diff) | |
download | ice-059ea645ef16d220ff93cc2f6fd2316974d86a3b.tar.bz2 ice-059ea645ef16d220ff93cc2f6fd2316974d86a3b.tar.xz ice-059ea645ef16d220ff93cc2f6fd2316974d86a3b.zip |
Node proxies are now stored in a separate non-replicated map.
Diffstat (limited to 'cpp/src/IceGrid/InternalRegistryI.cpp')
-rw-r--r-- | cpp/src/IceGrid/InternalRegistryI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/InternalRegistryI.cpp b/cpp/src/IceGrid/InternalRegistryI.cpp index 0e773b8755b..0b2fd6cd504 100644 --- a/cpp/src/IceGrid/InternalRegistryI.cpp +++ b/cpp/src/IceGrid/InternalRegistryI.cpp @@ -160,7 +160,7 @@ InternalRegistryI::getNodes(const Ice::Current&) const NodePrxSeq nodes; try { - Ice::ObjectProxySeq proxies = _database->getObjectsByType(Node::ice_staticId()); + Ice::ObjectProxySeq proxies = _database->getInternalObjectsByType(Node::ice_staticId()); for(Ice::ObjectProxySeq::const_iterator p = proxies.begin(); p != proxies.end(); ++p) { nodes.push_back(NodePrx::uncheckedCast(*p)); |