summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/NodeCache.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2007-01-02 11:27:04 +0000
committerBenoit Foucher <benoit@zeroc.com>2007-01-02 11:27:04 +0000
commitf0505ac942eeb61779680b76f1d1e3b2e2f4e2f1 (patch)
treea41f29914aff715591ac167d1b624ac0dfc6efd9 /cpp/src/IceGrid/NodeCache.cpp
parentRemoved .NET 1.1 and VS 2003 support. (diff)
downloadice-f0505ac942eeb61779680b76f1d1e3b2e2f4e2f1.tar.bz2
ice-f0505ac942eeb61779680b76f1d1e3b2e2f4e2f1.tar.xz
ice-f0505ac942eeb61779680b76f1d1e3b2e2f4e2f1.zip
Changes to support IceGrid database upgrade from 3.1 to 3.2
Diffstat (limited to 'cpp/src/IceGrid/NodeCache.cpp')
-rw-r--r--cpp/src/IceGrid/NodeCache.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/cpp/src/IceGrid/NodeCache.cpp b/cpp/src/IceGrid/NodeCache.cpp
index a5b53a99c38..aa2ade7e80e 100644
--- a/cpp/src/IceGrid/NodeCache.cpp
+++ b/cpp/src/IceGrid/NodeCache.cpp
@@ -667,13 +667,12 @@ NodeEntry::getServerDescriptor(const ServerInfo& server, const SessionIPtr& sess
IceBoxDescriptorPtr iceBox = IceBoxDescriptorPtr::dynamicCast(server.descriptor);
if(iceBox)
{
- return IceBoxHelper(_cache.getCommunicator(), iceBox).instantiate(resolve, PropertyDescriptorSeq(),
- PropertySetDescriptorDict());
+ return IceBoxHelper(iceBox).instantiate(resolve, PropertyDescriptorSeq(), PropertySetDescriptorDict());
}
else
{
- return ServerHelper(_cache.getCommunicator(), server.descriptor).instantiate(resolve, PropertyDescriptorSeq(),
- PropertySetDescriptorDict());
+ return ServerHelper(server.descriptor).instantiate(resolve, PropertyDescriptorSeq(),
+ PropertySetDescriptorDict());
}
}