diff options
author | Heikki Linnakangas | 2009-02-25 10:59:52 +0000 |
---|---|---|
committer | Heikki Linnakangas | 2009-02-25 10:59:52 +0000 |
commit | 306ba15ee4313ad7f42352ae63e29e4228d3ff4a (patch) | |
tree | 680bf270a5ff2a9b2ba7f374e787a81f0c01eaa6 | |
parent | e63b4d08f2acf9f1d5efcd04ed99334b8ddcf626 (diff) |
Put back a "continue" that went missing in the changes to start backgroundrecoveryinfra
writer in WAL recovery.
-rw-r--r-- | src/backend/postmaster/postmaster.c | 4 |
1 files changed, 3 insertions, 1 deletions
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; } /* |