]> granicus.if.org Git - postgresql/commit
Ensure cleanup in case of early errors in streaming base backups
authorMagnus Hagander <magnus@hagander.net>
Wed, 28 May 2014 11:03:21 +0000 (13:03 +0200)
committerMagnus Hagander <magnus@hagander.net>
Wed, 28 May 2014 11:03:21 +0000 (13:03 +0200)
commitdbcde0f4d62815eee8f32c17441db8f5009657db
treea752396d1b0fae3069758d5f45a9c67993592907
parent9a21ac082f5bfedac5d1a76d9c04e7c786cc242b
Ensure cleanup in case of early errors in streaming base backups

Move the code that sends the initial status information as well as the
calculation of paths inside the ENSURE_ERROR_CLEANUP block. If this code
failed, we would "leak" a counter of number of concurrent backups, thereby
making the system always believe it was in backup mode. This could happen
if the sending failed (which it probably never did given that the small
amount of data to send would never cause a flush). It is very low risk, but
all operations after do_pg_start_backup should be protected.
src/backend/replication/basebackup.c