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
1 changed files with 1 additions and 1 deletions

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
},