From: Tom Lane Date: Tue, 30 May 2006 17:08:20 +0000 (+0000) Subject: PostmasterIsAlive test really ought to be in the inner loop for safety. X-Git-Tag: REL8_1_5~92 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7788c43152d85c175cafce0bfeec395a7f3c29bf;p=thirdparty%2Fpostgresql.git PostmasterIsAlive test really ought to be in the inner loop for safety. --- diff --git a/src/backend/postmaster/pgarch.c b/src/backend/postmaster/pgarch.c index 73995c9043f..bd5bd8bcd31 100644 --- a/src/backend/postmaster/pgarch.c +++ b/src/backend/postmaster/pgarch.c @@ -19,7 +19,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/postmaster/pgarch.c,v 1.18.2.1 2006/05/30 13:31:01 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/postmaster/pgarch.c,v 1.18.2.2 2006/05/30 17:08:20 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -352,12 +352,16 @@ pgarch_ArchiverCopyLoop(void) * some backend will add files onto the list of those that need archiving * while we are still copying earlier archives */ - while (PostmasterIsAlive(true) && pgarch_readyXlog(xlog)) + while (pgarch_readyXlog(xlog)) { int failures = 0; for (;;) { + /* Abandon processing if we notice our postmaster has died */ + if (!PostmasterIsAlive(true)) + return; + if (pgarch_archiveXlog(xlog)) { /* successful */