Skip to content
Snippets Groups Projects
Commit f44c4f9b authored by brinn's avatar brinn
Browse files

change: set 'treatIncomingAsRemote' to true when a host name is set for the...

change: set 'treatIncomingAsRemote' to true when a host name is set for the incoming store (avoid confusing log)

SVN: 7438
parent b9c63b8f
No related branches found
No related tags found
No related merge requests found
......@@ -470,6 +470,10 @@ public final class Parameters implements ITimingParameters, IFileSysParameters
incomingTarget =
HostAwareFileWithHighwaterMark.fromProperties(serviceProperties,
PropertyNames.INCOMING_TARGET);
if (incomingTarget.tryGetHost() != null)
{
treatIncomingAsRemote = true;
}
}
if (serviceProperties.getProperty(PropertyNames.BUFFER_DIR) != null)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment