diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2009-02-25 11:07:43 +0000 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2009-02-25 11:07:43 +0000 |
commit | 0160cebee9cd229f48a8b3726e31c5026ca8e001 (patch) | |
tree | 40dfec0325286f6a22de00415269a336e3244326 /src | |
parent | e549722a8b2fcc5b2ad9a9bd53948466ea5dae26 (diff) | |
download | postgresql-0160cebee9cd229f48a8b3726e31c5026ca8e001.tar.gz postgresql-0160cebee9cd229f48a8b3726e31c5026ca8e001.zip |
Put back a "continue" that went missing in the changes to start background
writer in WAL recovery.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/postmaster/postmaster.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 68505edc568..f7637d15db2 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -37,7 +37,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.573 2009/02/23 09:28:50 heikki Exp $ + * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.574 2009/02/25 11:07:43 heikki Exp $ * * NOTES * @@ -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; } /* |