diff options
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/IceGrid/RegistryI.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/IceGrid/RegistryI.cpp b/cpp/src/IceGrid/RegistryI.cpp index 5d3a73e24a7..5aa9a592062 100644 --- a/cpp/src/IceGrid/RegistryI.cpp +++ b/cpp/src/IceGrid/RegistryI.cpp @@ -1469,12 +1469,12 @@ RegistryI::registerReplicas(const InternalRegistryPrx& internalRegistry, const N break; } } - ObjectInfoSeq infos; + ObjectInfoSeq infos; if(registry) { try { - infos.push_back(_database->getObjectInfo(registry->ice_getIdentity())); + infos.push_back(_database->getObjectInfo(registry->ice_getIdentity())); } catch(const ObjectNotRegisteredException&) { @@ -1482,12 +1482,12 @@ RegistryI::registerReplicas(const InternalRegistryPrx& internalRegistry, const N } try { - infos.push_back(_database->getObjectInfo(replica->ice_getIdentity())); + infos.push_back(_database->getObjectInfo(replica->ice_getIdentity())); } catch(const ObjectNotRegisteredException&) { } - _database->removeRegistryWellKnownObjects(infos); + _database->removeRegistryWellKnownObjects(infos); if(_traceLevels && _traceLevels->replica > 1) { |