(self, backup_info)
| 275 | backup_info.wal_segment_offset_backup_start)) |
| 276 | |
| 277 | def basebackup_sentinel(self, backup_info): |
| 278 | self._error_on_unexpected_version() |
| 279 | basebackup = self.basebackup_directory(backup_info) |
| 280 | # need to strip the trailing slash on the base backup dir |
| 281 | # to correctly point to the sentinel |
| 282 | return (basebackup.rstrip('/') + '_backup_stop_sentinel.json') |
| 283 | |
| 284 | def basebackup_tar_partition_directory(self, backup_info): |
| 285 | self._error_on_unexpected_version() |
no test coverage detected