mirror of
https://github.com/postgres/postgres.git
synced 2025-06-29 10:41:53 +03:00
Set MaxBackends only on bootstrap and standalone modes
... not on auxiliary processes. I managed to overlook the fact that I had disabled assertions on my HEAD checkout long ago. Hopefully this will turn the buildfarm green again, and put an end to today's silliness.
This commit is contained in:
@ -3653,6 +3653,11 @@ PostgresMain(int argc, char *argv[], const char *username)
|
||||
* Create lockfile for data directory.
|
||||
*/
|
||||
CreateDataDirLockFile(false);
|
||||
|
||||
/* In EXEC_BACKEND, this was set via BackendParameters */
|
||||
#ifndef EXEC_BACKEND
|
||||
InitializeMaxBackends();
|
||||
#endif
|
||||
}
|
||||
|
||||
/* Early initialization */
|
||||
|
Reference in New Issue
Block a user