Skip to content

Commit 58b96e8

Browse files
committed
Fixed typo - let correctly check value of ParallelWorkers setting against value of MaxParallelWorkers
1 parent 7cda489 commit 58b96e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/config/config.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ void Config::checkValues()
431431
checkIntForHiBound(KEY_MAX_PARALLEL_WORKERS, 64, false); // todo: detect number of available cores
432432

433433
checkIntForLoBound(KEY_PARALLEL_WORKERS, 1, true);
434-
checkIntForHiBound(KEY_MAX_PARALLEL_WORKERS, values[KEY_MAX_PARALLEL_WORKERS].intVal, false);
434+
checkIntForHiBound(KEY_PARALLEL_WORKERS, values[KEY_MAX_PARALLEL_WORKERS].intVal, false);
435435
}
436436

437437

0 commit comments

Comments
 (0)