1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2024-11-29 09:42:27 +02:00

TODO about different exit codes for validation

This commit is contained in:
Grigory Smolkin 2019-02-22 19:38:07 +03:00
parent 9243a8a399
commit d1cb537a90

View File

@ -343,6 +343,14 @@ do_validate_all(void)
do_validate_instance();
}
/* TODO: Probably we should have different exit code for every condition
* and they combination:
* 0 - all backups are valid
* 1 - some backups are corrup
* 2 - some backups where skipped due to concurrent locks
* 3 - some backups are corrupt and some are skipped due to concurrent locks
*/
if (skipped_due_to_lock)
elog(WARNING, "Some backups weren't locked and they were skipped");