summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut2013-04-27 02:43:54 +0000
committerPeter Eisentraut2013-04-27 02:43:54 +0000
commitf5d576c6d278a61beec282b9b276a3a3cb2aec50 (patch)
treeb3dd087953f5eaca9d299fe01b18b42c75bf587e
parentb53b603c919dd37444da0f15e8867c707ce1a03a (diff)
Improve message about failed transaction log archiving
The old phrasing appeared to imply that the failure was terminal. Improve that by indicating that archiving will be tried again later.
-rw-r--r--src/backend/postmaster/pgarch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/postmaster/pgarch.c b/src/backend/postmaster/pgarch.c
index 3ddd5966476..ffd4830cb05 100644
--- a/src/backend/postmaster/pgarch.c
+++ b/src/backend/postmaster/pgarch.c
@@ -503,7 +503,7 @@ pgarch_ArchiverCopyLoop(void)
if (++failures >= NUM_ARCHIVE_RETRIES)
{
ereport(WARNING,
- (errmsg("transaction log file \"%s\" could not be archived: too many failures",
+ (errmsg("archiving transaction log file \"%s\" failed too many times, will try again later",
xlog)));
return; /* give up archiving for now */
}