summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/InternalRegistryI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceGrid/InternalRegistryI.cpp')
-rw-r--r--cpp/src/IceGrid/InternalRegistryI.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/InternalRegistryI.cpp b/cpp/src/IceGrid/InternalRegistryI.cpp
index acebca37ed8..0e773b8755b 100644
--- a/cpp/src/IceGrid/InternalRegistryI.cpp
+++ b/cpp/src/IceGrid/InternalRegistryI.cpp
@@ -132,13 +132,12 @@ ReplicaSessionPrx
InternalRegistryI::registerReplica(const std::string& name,
const RegistryInfo& info,
const InternalRegistryPrx& registry,
- const DatabaseObserverPrx& dbObserver,
const Ice::Current& current)
{
try
{
ReplicaSessionIPtr session = new ReplicaSessionI(_database, _wellKnownObjects, name, info, registry,
- dbObserver, _replicaSessionTimeout);
+ _replicaSessionTimeout);
ReplicaSessionPrx proxy = ReplicaSessionPrx::uncheckedCast(current.adapter->addWithUUID(session));
_reaper->add(new SessionReapable<ReplicaSessionI>(current.adapter, session, proxy), _replicaSessionTimeout);
return proxy;