8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 21:23:04 +01:00

Fixed typo - let correctly check value of ParallelWorkers setting against value of MaxParallelWorkers

This commit is contained in:
Vlad Khorsun 2024-01-29 13:22:38 +02:00
parent 7cda489685
commit 58b96e8400

View File

@ -431,7 +431,7 @@ void Config::checkValues()
checkIntForHiBound(KEY_MAX_PARALLEL_WORKERS, 64, false); // todo: detect number of available cores
checkIntForLoBound(KEY_PARALLEL_WORKERS, 1, true);
checkIntForHiBound(KEY_MAX_PARALLEL_WORKERS, values[KEY_MAX_PARALLEL_WORKERS].intVal, false);
checkIntForHiBound(KEY_PARALLEL_WORKERS, values[KEY_MAX_PARALLEL_WORKERS].intVal, false);
}