Put back a "continue" that went missing in the changes to start background
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 25 Feb 2009 11:07:43 +0000 (11:07 +0000)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 25 Feb 2009 11:07:43 +0000 (11:07 +0000)
writer in WAL recovery.

src/backend/postmaster/postmaster.c

index 68505edc5688e50e2691f08137ce8a2d7e2b06ab..f7637d15db2c2e35e8d09329ed6876b939877e45 100644 (file)
@@ -37,7 +37,7 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.573 2009/02/23 09:28:50 heikki Exp $
+ *       $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.574 2009/02/25 11:07:43 heikki Exp $
  *
  * NOTES
  *
@@ -2226,7 +2226,9 @@ reaper(SIGNAL_ARGS)
 
                        /* at this point we are really open for business */
                        ereport(LOG,
-                               (errmsg("database system is ready to accept connections")));
+                                (errmsg("database system is ready to accept connections")));
+
+                       continue;
                }
 
                /*