mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
Remove unnecessary assertion in postmaster.c
A code path asserted that the archiver was dead, but a check made that impossible to happen. Author: Bharath Rupireddy Discussion: https://postgr.es/m/CALj2ACW=CYE1ars+2XyPTEPq0wQvru4c0dPZ=Nrn3EqNBkksvQ@mail.gmail.com Backpatch-throgh: 14
This commit is contained in:
@ -3934,7 +3934,6 @@ PostmasterStateMachine(void)
|
||||
Assert(CheckpointerPID == 0);
|
||||
Assert(WalWriterPID == 0);
|
||||
Assert(AutoVacPID == 0);
|
||||
Assert(PgArchPID == 0);
|
||||
/* syslogger is not considered here */
|
||||
pmState = PM_NO_CHILDREN;
|
||||
}
|
||||
|
Reference in New Issue
Block a user