You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently have a complicated process for determining the IceGrid instance name:
// The IceGrid instance name. We can't use getIceProperty as we don't want to get any default values.
string instanceName = properties->getProperty("IceGrid.InstanceName");
if (instanceName.empty())
{
instanceName = properties->getProperty("IceLocatorDiscovery.InstanceName");
}
if (instanceName.empty())
{
instanceName = communicator()->getDefaultLocator()->ice_getIdentity().category;
}
if (instanceName.empty())
{
instanceName = "IceGrid";
}
I've yet to find anywhere that we document this in the docs. I think we should just use IceGrid.InstanceName
The text was updated successfully, but these errors were encountered:
We currently have a complicated process for determining the IceGrid instance name:
I've yet to find anywhere that we document this in the docs. I think we should just use
IceGrid.InstanceName
The text was updated successfully, but these errors were encountered: