Skip to content

Commit

Permalink
Merge pull request #18770 from mckellyln/win_build_fix
Browse files Browse the repository at this point in the history
HPCC-32071 Windows build fix for HPCC-28461

Reviewed-by: Gordon Smith <[email protected]>
Reviewed-by: Gavin Halliday <[email protected]>
Merged-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday authored Jun 18, 2024
2 parents 16ff345 + 9da16ac commit 52df8c0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions fs/dafilesrv/dafilesrv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -734,6 +734,7 @@ int main(int argc, const char* argv[])
unsigned throttleSlowDelayMs;
unsigned throttleSlowCPULimit;
unsigned sslport;
unsigned listenQueueLimit;
Linked<IPropertyTree> keyPairInfo;
StringAttr rowServiceConfiguration;
unsigned dedicatedRowServicePort;
Expand Down Expand Up @@ -763,15 +764,15 @@ int main(int argc, const char* argv[])
unsigned _maxThreads, unsigned _maxThreadsDelayMs, unsigned _maxAsyncCopy,
unsigned _parallelRequestLimit, unsigned _throttleDelayMs, unsigned _throttleCPULimit,
unsigned _parallelSlowRequestLimit, unsigned _throttleSlowDelayMs, unsigned _throttleSlowCPULimit,
unsigned _sslport,
unsigned _sslport, unsigned _listenQueueLimit,
IPropertyTree *_keyPairInfo,
const char *_rowServiceConfiguration,
unsigned _dedicatedRowServicePort, bool _dedicatedRowServiceSSL, bool _rowServiceOnStdPort)
: config(_config), connectMethod(_connectMethod), listenep(_listenep), pollthread(this),
maxThreads(_maxThreads), maxThreadsDelayMs(_maxThreadsDelayMs), maxAsyncCopy(_maxAsyncCopy),
parallelRequestLimit(_parallelRequestLimit), throttleDelayMs(_throttleDelayMs), throttleCPULimit(_throttleCPULimit),
parallelSlowRequestLimit(_parallelSlowRequestLimit), throttleSlowDelayMs(_throttleSlowDelayMs), throttleSlowCPULimit(_throttleSlowCPULimit),
sslport(_sslport),
sslport(_sslport), listenQueueLimit(_listenQueueLimit),
keyPairInfo(_keyPairInfo),
rowServiceConfiguration(_rowServiceConfiguration), dedicatedRowServicePort(_dedicatedRowServicePort), dedicatedRowServiceSSL(_dedicatedRowServiceSSL), rowServiceOnStdPort(_rowServiceOnStdPort)
{
Expand Down Expand Up @@ -863,7 +864,7 @@ int main(int argc, const char* argv[])
} service(config, connectMethod, listenep,
maxThreads, maxThreadsDelayMs, maxAsyncCopy,
parallelRequestLimit, throttleDelayMs, throttleCPULimit,
parallelSlowRequestLimit, throttleSlowDelayMs, throttleSlowCPULimit, sslport,
parallelSlowRequestLimit, throttleSlowDelayMs, throttleSlowCPULimit, sslport, listenQueueLimit,
keyPairInfo, rowServiceConfiguration, dedicatedRowServicePort, dedicatedRowServiceSSL, rowServiceOnStdPort);
service.start();
return 0;
Expand Down

0 comments on commit 52df8c0

Please sign in to comment.