|
@@ -678,9 +678,6 @@ int STARTQUERY_API start_query(int argc, const char *argv[])
|
|
|
lowTimeout = topology->getPropInt("@lowTimeout", 10000);
|
|
|
highTimeout = topology->getPropInt("@highTimeout", 2000);
|
|
|
slaTimeout = topology->getPropInt("@slaTimeout", 2000);
|
|
|
- unsigned remoteConnectTimeout = topology->getPropInt("@remoteConnectTimeout", 10000);
|
|
|
- unsigned remoteReadTimeout = topology->getPropInt("@remoteReadTimeout", 0);
|
|
|
- setRemoteFileTimeouts(remoteConnectTimeout, remoteReadTimeout);
|
|
|
parallelLoopFlowLimit = topology->getPropInt("@parallelLoopFlowLimit", 100);
|
|
|
perChannelFlowLimit = topology->getPropInt("@perChannelFlowLimit", 10);
|
|
|
copyResources = topology->getPropBool("@copyResources", true);
|
|
@@ -822,6 +819,7 @@ int STARTQUERY_API start_query(int argc, const char *argv[])
|
|
|
maxFilesOpen[false] = topology->getPropInt("@maxLocalFilesOpen", 4000);
|
|
|
maxFilesOpen[true] = topology->getPropInt("@maxRemoteFilesOpen", 1000);
|
|
|
dafilesrvLookupTimeout = topology->getPropInt("@dafilesrvLookupTimeout", 10000);
|
|
|
+ setRemoteFileTimeouts(dafilesrvLookupTimeout, 0);
|
|
|
topology->getProp("@daliServers", fileNameServiceDali);
|
|
|
trapTooManyActiveQueries = topology->getPropBool("@trapTooManyActiveQueries", true);
|
|
|
maxEmptyLoopIterations = topology->getPropInt("@maxEmptyLoopIterations", 1000);
|