We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fa063f commit 6198160Copy full SHA for 6198160
tests/archive_test.py
@@ -317,7 +317,10 @@ def test_pgpro434_4(self):
317
os.environ["PGAPPNAME"] = "pg_probackup"
318
319
postgres_gdb = self.gdb_attach(pid)
320
- postgres_gdb.set_breakpoint('do_pg_stop_backup')
+ if self.get_version(node) < 150000:
321
+ postgres_gdb.set_breakpoint('do_pg_stop_backup')
322
+ else:
323
+ postgres_gdb.set_breakpoint('do_pg_backup_stop')
324
postgres_gdb.continue_execution_until_running()
325
326
gdb.continue_execution_until_exit()
0 commit comments