We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ae340c commit 644eea8Copy full SHA for 644eea8
testgres/plugins/pg_probackup2/pg_probackup2/app.py
@@ -74,6 +74,8 @@ def run(self, command, gdb=False, old_binary=False, return_id=True, env=None,
74
command = [command[0], *use_backup_dir.pb_args, *command[1:]]
75
elif use_backup_dir:
76
command = [command[0], *self.backup_dir.pb_args, *command[1:]]
77
+ else:
78
+ command = [command[0], *self.backup_dir.pb_args[2:], *command[1:]]
79
80
if not self.probackup_old_path and old_binary:
81
logging.error('PGPROBACKUPBIN_OLD is not set')
0 commit comments