From: Heikki Linnakangas Date: Wed, 25 Feb 2009 10:59:52 +0000 (+0200) Subject: Put back a "continue" that went missing in the changes to start background X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=refs%2Fheads%2Frecoveryinfra;p=users%2Fsimon%2Fpostgres.git Put back a "continue" that went missing in the changes to start background writer in WAL recovery. --- diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 575223ad4e..bae413255a 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -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; } /*