Commit c4d3a039 authored by Peter Eisentraut's avatar Peter Eisentraut

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.
parent e2e95f5e
......@@ -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
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment