summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/NodeCache.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceGrid/NodeCache.cpp')
-rw-r--r--cpp/src/IceGrid/NodeCache.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/NodeCache.cpp b/cpp/src/IceGrid/NodeCache.cpp
index 967e0c853d7..afcedbe09f0 100644
--- a/cpp/src/IceGrid/NodeCache.cpp
+++ b/cpp/src/IceGrid/NodeCache.cpp
@@ -452,11 +452,11 @@ NodeEntry::getServerDescriptor(const ServerInfo& server)
IceBoxDescriptorPtr iceBox = IceBoxDescriptorPtr::dynamicCast(server.descriptor);
if(iceBox)
{
- return IceBoxHelper(iceBox).instantiate(resolve);
+ return IceBoxHelper(iceBox).instantiate(resolve, PropertySetDescriptor());
}
else
{
- return ServerHelper(server.descriptor).instantiate(resolve);
+ return ServerHelper(server.descriptor).instantiate(resolve, PropertySetDescriptor());
}
}
catch(const DeploymentException& ex)