diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-12-08 13:04:02 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-12-08 13:04:02 +0000 |
commit | 8c3c0a274e70db8018a0d8c8817894ec541110bd (patch) | |
tree | d9231b2bfa6221a00348023efe347d4baca38b5c /cpp/src/IceGrid/NodeCache.cpp | |
parent | Added replicated IceStorm demo (diff) | |
download | ice-8c3c0a274e70db8018a0d8c8817894ec541110bd.tar.bz2 ice-8c3c0a274e70db8018a0d8c8817894ec541110bd.tar.xz ice-8c3c0a274e70db8018a0d8c8817894ec541110bd.zip |
Added support for service property sets in server instances
Diffstat (limited to 'cpp/src/IceGrid/NodeCache.cpp')
-rw-r--r-- | cpp/src/IceGrid/NodeCache.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/NodeCache.cpp b/cpp/src/IceGrid/NodeCache.cpp index 08fb3348763..9b9e798aa5f 100644 --- a/cpp/src/IceGrid/NodeCache.cpp +++ b/cpp/src/IceGrid/NodeCache.cpp @@ -554,11 +554,13 @@ NodeEntry::getServerDescriptor(const ServerInfo& server, const SessionIPtr& sess IceBoxDescriptorPtr iceBox = IceBoxDescriptorPtr::dynamicCast(server.descriptor); if(iceBox) { - return IceBoxHelper(_cache.getCommunicator(), iceBox).instantiate(resolve, PropertyDescriptorSeq()); + return IceBoxHelper(_cache.getCommunicator(), iceBox).instantiate(resolve, PropertyDescriptorSeq(), + PropertySetDescriptorDict()); } else { - return ServerHelper(_cache.getCommunicator(), server.descriptor).instantiate(resolve, PropertyDescriptorSeq()); + return ServerHelper(_cache.getCommunicator(), server.descriptor).instantiate(resolve, PropertyDescriptorSeq(), + PropertySetDescriptorDict()); } } |