1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Change minimum max_worker_processes from 1 to 0

Setting it to 0 is probably not useful in practice, but it allows
testing of situations without available background worker slots.
This commit is contained in:
Peter Eisentraut
2016-08-02 13:15:35 -04:00
parent e2e95f5ef3
commit c4d3a039f0

View File

@ -2469,7 +2469,7 @@ static struct config_int ConfigureNamesInt[] =
NULL,
},
&max_worker_processes,
8, 1, MAX_BACKENDS,
8, 0, MAX_BACKENDS,
check_max_worker_processes, NULL, NULL
},