@@ -29,7 +29,7 @@ def test_pgpro434_1(self):
2929 self .init_pb (backup_dir )
3030 self .add_instance (backup_dir , 'node' , node )
3131 self .set_archiving (backup_dir , 'node' , node )
32- node .start ()
32+ node .slow_start ()
3333
3434 node .safe_psql (
3535 "postgres" ,
@@ -89,7 +89,7 @@ def test_pgpro434_2(self):
8989 self .init_pb (backup_dir )
9090 self .add_instance (backup_dir , 'node' , node )
9191 self .set_archiving (backup_dir , 'node' , node )
92- node .start ()
92+ node .slow_start ()
9393
9494 # FIRST TIMELINE
9595 node .safe_psql (
@@ -247,7 +247,7 @@ def test_pgpro434_3(self):
247247 node .append_conf (
248248 'postgresql.auto.conf' , "archive_command = '{0} %p %f'" .format (
249249 archive_script_path ))
250- node .start ()
250+ node .slow_start ()
251251 try :
252252 self .backup_node (
253253 backup_dir , 'node' , node ,
@@ -308,7 +308,7 @@ def test_arhive_push_file_exists(self):
308308 f .flush ()
309309 f .close ()
310310
311- node .start ()
311+ node .slow_start ()
312312 node .safe_psql (
313313 "postgres" ,
314314 "create table t_heap as select i as id, md5(i::text) as text, "
@@ -368,7 +368,7 @@ def test_arhive_push_file_exists_overwrite(self):
368368 f .flush ()
369369 f .close ()
370370
371- node .start ()
371+ node .slow_start ()
372372 node .safe_psql (
373373 "postgres" ,
374374 "create table t_heap as select i as id, md5(i::text) as text, "
@@ -423,7 +423,7 @@ def test_replica_archive(self):
423423 self .init_pb (backup_dir )
424424 # ADD INSTANCE 'MASTER'
425425 self .add_instance (backup_dir , 'master' , master )
426- master .start ()
426+ master .slow_start ()
427427
428428 replica = self .make_simple_node (
429429 base_dir = "{0}/{1}/replica" .format (module_name , fname ))
@@ -444,7 +444,7 @@ def test_replica_archive(self):
444444
445445 self .add_instance (backup_dir , 'replica' , replica )
446446 self .set_archiving (backup_dir , 'replica' , replica , replica = True )
447- replica .start ( )
447+ replica .slow_start ( replica = True )
448448
449449 # Check data correctness on replica
450450 after = replica .safe_psql ("postgres" , "SELECT * FROM t_heap" )
@@ -481,7 +481,7 @@ def test_replica_archive(self):
481481 self .restore_node (backup_dir , 'replica' , data_dir = node .data_dir )
482482 node .append_conf (
483483 'postgresql.auto.conf' , 'port = {0}' .format (node .port ))
484- node .start ()
484+ node .slow_start ()
485485 # CHECK DATA CORRECTNESS
486486 after = node .safe_psql ("postgres" , "SELECT * FROM t_heap" )
487487 self .assertEqual (before , after )
@@ -513,7 +513,7 @@ def test_replica_archive(self):
513513 backup_dir , 'replica' , data_dir = node .data_dir , backup_id = backup_id )
514514 node .append_conf (
515515 'postgresql.auto.conf' , 'port = {0}' .format (node .port ))
516- node .start ()
516+ node .slow_start ()
517517 # CHECK DATA CORRECTNESS
518518 after = node .safe_psql ("postgres" , "SELECT * FROM t_heap" )
519519 self .assertEqual (before , after )
@@ -547,7 +547,7 @@ def test_master_and_replica_parallel_archiving(self):
547547 # ADD INSTANCE 'MASTER'
548548 self .add_instance (backup_dir , 'master' , master )
549549 self .set_archiving (backup_dir , 'master' , master )
550- master .start ()
550+ master .slow_start ()
551551
552552 master .psql (
553553 "postgres" ,
@@ -573,7 +573,7 @@ def test_master_and_replica_parallel_archiving(self):
573573 self .add_instance (backup_dir , 'replica' , replica )
574574 # SET ARCHIVING FOR REPLICA
575575 self .set_archiving (backup_dir , 'replica' , replica , replica = True )
576- replica .start ( )
576+ replica .slow_start ( replica = True )
577577
578578 # CHECK LOGICAL CORRECTNESS on REPLICA
579579 after = replica .safe_psql ("postgres" , "SELECT * FROM t_heap" )
@@ -628,7 +628,7 @@ def test_master_and_replica_concurrent_archiving(self):
628628 # ADD INSTANCE 'MASTER'
629629 self .add_instance (backup_dir , 'master' , master )
630630 self .set_archiving (backup_dir , 'master' , master )
631- master .start ()
631+ master .slow_start ()
632632
633633 master .psql (
634634 "postgres" ,
@@ -655,7 +655,7 @@ def test_master_and_replica_concurrent_archiving(self):
655655 # self.add_instance(backup_dir, 'replica', replica)
656656 # SET ARCHIVING FOR REPLICA
657657 # self.set_archiving(backup_dir, 'replica', replica, replica=True)
658- replica .start ( )
658+ replica .slow_start ( replica = True )
659659
660660 # CHECK LOGICAL CORRECTNESS on REPLICA
661661 after = replica .safe_psql ("postgres" , "SELECT * FROM t_heap" )
0 commit comments