summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/ObjectCache.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceGrid/ObjectCache.cpp')
-rw-r--r--cpp/src/IceGrid/ObjectCache.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/ObjectCache.cpp b/cpp/src/IceGrid/ObjectCache.cpp
index 65cb547315e..29132c8c221 100644
--- a/cpp/src/IceGrid/ObjectCache.cpp
+++ b/cpp/src/IceGrid/ObjectCache.cpp
@@ -372,7 +372,7 @@ ObjectEntry::allocated(const SessionIPtr& session)
{
Ice::IdentitySeq seq(1);
seq.push_back(_info.proxy->ice_getIdentity());
- ctl->identityFilter()->addAccept(seq);
+ ctl->identities()->add(seq);
}
catch(const Ice::ObjectNotExistException&)
{
@@ -395,7 +395,7 @@ ObjectEntry::released(const SessionIPtr& session)
{
Ice::IdentitySeq seq(1);
seq.push_back(_info.proxy->ice_getIdentity());
- ctl->identityFilter()->removeAccept(seq);
+ ctl->identities()->remove(seq);
}
catch(const Ice::ObjectNotExistException&)
{