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/static/gitweb.js?a=commitdiff_plain;h=306ba15ee4313ad7f42352ae63e29e4228d3ff4a;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; } /*