From 306ba15ee4313ad7f42352ae63e29e4228d3ff4a Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Wed, 25 Feb 2009 12:59:52 +0200 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.30.2