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
Copy file name to clipboardExpand all lines: src/main.d
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -194,6 +194,9 @@ int main(string[] cliArgs) {
194
194
// Update the current runtime application configuration (default or 'config' file read in options) from any passed in command line arguments
195
195
appConfig.updateFromArgs(cliArgs);
196
196
197
+
// Set the default thread pool value based on configuration or maximum logical CPUs
198
+
setDefaultApplicationThreads();
199
+
197
200
// If --debug-https has been used, set the applicable flag
198
201
debugHTTPSResponse = appConfig.getValueBool("debug_https"); // set __gshared bool debugHTTPSResponse in log.d now that we have read-in any CLI arguments
199
202
@@ -835,9 +838,6 @@ int main(string[] cliArgs) {
835
838
// Do we need to validate the runtimeSyncDirectory to check for the presence of a '.nosync' file
0 commit comments