(self, backup_info)
| 268 | return self._api_path_prefix + 'basebackups_' + self.VERSION + '/' |
| 269 | |
| 270 | def basebackup_directory(self, backup_info): |
| 271 | self._error_on_unexpected_version() |
| 272 | return (self.basebackups() + |
| 273 | 'base_{0}_{1}/'.format( |
| 274 | backup_info.wal_segment_backup_start, |
| 275 | backup_info.wal_segment_offset_backup_start)) |
| 276 | |
| 277 | def basebackup_sentinel(self, backup_info): |
| 278 | self._error_on_unexpected_version() |
no test coverage detected