Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 5717f3a

Browse files
committed
Fix bogus comment, from the patch to start bgwriter during archive
recovery.
1 parent 80e26ca commit 5717f3a

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/backend/postmaster/postmaster.c

+3-6
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
*
3838
*
3939
* IDENTIFICATION
40-
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.571 2009/02/18 15:58:41 heikki Exp $
40+
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.572 2009/02/19 16:43:13 heikki Exp $
4141
*
4242
* NOTES
4343
*
@@ -2652,7 +2652,8 @@ PostmasterStateMachine(void)
26522652
if (pmState == PM_RECOVERY && RecoveryStatus >= RecoveryConsistent)
26532653
{
26542654
/*
2655-
* Go to shutdown mode if a shutdown request was pending.
2655+
* Recovery has reached a consistent recovery point. Go to shutdown
2656+
* mode if a shutdown request was pending.
26562657
*/
26572658
if (Shutdown > NoShutdown)
26582659
{
@@ -2661,10 +2662,6 @@ PostmasterStateMachine(void)
26612662
}
26622663
else
26632664
{
2664-
/*
2665-
* Startup process has entered recovery. We consider that good
2666-
* enough to reset FatalError.
2667-
*/
26682665
pmState = PM_RECOVERY_CONSISTENT;
26692666

26702667
/*

0 commit comments

Comments
 (0)