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