- Notifications
You must be signed in to change notification settings - Fork37
Abs backup path#108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Abs backup path#108
Changes from1 commit
fb0ee4448195d14d3dd7052fc5377a341bf071f108File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
- Loading branch information
Uh oh!
There was an error while loading.Please reload this page.
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -42,8 +42,11 @@ class FSTestBackupDir(TestBackupDir): | ||
| """ Backup directory. Usually created by running pg_probackup init -B <path>""" | ||
| def __init__(self, *, path, backup): | ||
| if os.path.isabs(path): | ||
| self.path = os.path.join(path, backup) | ||
| else: | ||
| ||
| self.path = os.path.join(init_params.tmp_path, path, backup) | ||
| self.pb_args = ('-B', self.path) | ||
| def list_instance_backups(self, instance): | ||