diff options
Diffstat (limited to 'cpp/src/IceGrid/ServerI.cpp')
-rw-r--r-- | cpp/src/IceGrid/ServerI.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/IceGrid/ServerI.cpp b/cpp/src/IceGrid/ServerI.cpp index 34f0030d790..7fcc644b987 100644 --- a/cpp/src/IceGrid/ServerI.cpp +++ b/cpp/src/IceGrid/ServerI.cpp @@ -1338,7 +1338,7 @@ ServerI::checkUpdate(const InternalServerDescriptorPtr& desc, bool noRestart, co } return true; } - + InternalServerDescriptorPtr d = _load ? _load->getInternalServerDescriptor() : _desc; if(!descriptorUpdated(d, desc)) { @@ -1406,7 +1406,7 @@ ServerI::destroy(const AMD_Node_destroyServerPtr& amdCB, const string& uuid, int } _stop = new StopCommand(this, _node->getTimer(), _deactivationTimeout); } - + if(!_destroy) { // @@ -3215,11 +3215,11 @@ ServerI::getProperties(const InternalServerDescriptorPtr& desc) p->second.push_back(createProperty("Ice.Default.Locator", locator)); } - string discoveryPlugin = properties->getProperty("Ice.Plugin.IceGridDiscovery"); + string discoveryPlugin = properties->getProperty("Ice.Plugin.IceLocatorDiscovery"); if(!discoveryPlugin.empty()) { - p->second.push_back(createProperty("Ice.Plugin.IceGridDiscovery", discoveryPlugin)); - p->second.push_back(createProperty("IceGridDiscovery.InstanceName", _node->getInstanceName())); + p->second.push_back(createProperty("Ice.Plugin.IceLocatorDiscovery", discoveryPlugin)); + p->second.push_back(createProperty("IceLocatorDiscovery.InstanceName", _node->getInstanceName())); } } |