diff options
author | Benoit Foucher <benoit@zeroc.com> | 2007-01-02 11:27:04 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2007-01-02 11:27:04 +0000 |
commit | f0505ac942eeb61779680b76f1d1e3b2e2f4e2f1 (patch) | |
tree | a41f29914aff715591ac167d1b624ac0dfc6efd9 /cpp/src/IceGrid/NodeCache.cpp | |
parent | Removed .NET 1.1 and VS 2003 support. (diff) | |
download | ice-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.cpp | 7 |
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()); } } |