mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
Reduce the default for max_worker_processes back to 8.
Commit b460f5d669
-- at my suggestion --
increased the default value of max_worker_processes from 8 to 16, on
the theory that this would be harmless and convenient for users.
Unfortunately, this caused some buildfarm machines with low connection
limits to start failing, so apparently it's not harmless after all.
This commit is contained in:
@ -2477,7 +2477,7 @@ static struct config_int ConfigureNamesInt[] =
|
||||
NULL,
|
||||
},
|
||||
&max_worker_processes,
|
||||
16, 0, MAX_BACKENDS,
|
||||
8, 0, MAX_BACKENDS,
|
||||
check_max_worker_processes, NULL, NULL
|
||||
},
|
||||
|
||||
|
Reference in New Issue
Block a user