From 5ed2d142dc2b469f4cafa65fbb03303547d5a73f Mon Sep 17 00:00:00 2001 From: heikki Date: Wed, 25 Feb 2009 11:07:43 +0000 Subject: [PATCH] Put back a "continue" that went missing in the changes to start background writer in WAL recovery. --- src/backend/postmaster/postmaster.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; } /* -- 2.11.4.GIT