diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2013-04-26 22:43:54 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2013-04-26 22:43:54 -0400 |
commit | f5d576c6d278a61beec282b9b276a3a3cb2aec50 (patch) | |
tree | b3dd087953f5eaca9d299fe01b18b42c75bf587e /src | |
parent | b53b603c919dd37444da0f15e8867c707ce1a03a (diff) | |
download | postgresql-f5d576c6d278a61beec282b9b276a3a3cb2aec50.tar.gz postgresql-f5d576c6d278a61beec282b9b276a3a3cb2aec50.zip |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/postmaster/pgarch.c | 2 |
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 */ } |