@@ -93,7 +93,7 @@ def test_restore_empty_tablespace_from_fullbackup(self):
93
93
)
94
94
95
95
try :
96
- self .node .start ()
96
+ self .node .slow_start ()
97
97
except ProbackupException as e :
98
98
self .fail (
99
99
"ERROR: Instance not started after restore. \n {0} \n {1}" .format (
@@ -151,7 +151,7 @@ def test_restore_from_fullbackup_to_old_location(self):
151
151
"ERROR: File pg_compression not found in tablespace dir"
152
152
)
153
153
try :
154
- self .node .start ()
154
+ self .node .slow_start ()
155
155
except ProbackupException as e :
156
156
self .fail (
157
157
"ERROR: Instance not started after restore. \n {0} \n {1}" .format (
@@ -189,7 +189,7 @@ def test_restore_from_fullbackup_to_old_location_3_jobs(self):
189
189
"ERROR: File pg_compression not found in backup dir"
190
190
)
191
191
try :
192
- self .node .start ()
192
+ self .node .slow_start ()
193
193
except ProbackupException as e :
194
194
self .fail (
195
195
"ERROR: Instance not started after restore. \n {0} \n {1}" .format (
@@ -230,7 +230,7 @@ def test_restore_from_fullbackup_to_new_location(self):
230
230
"ERROR: File pg_compression not found in backup dir"
231
231
)
232
232
try :
233
- self .node_new .start ()
233
+ self .node_new .slow_start ()
234
234
except ProbackupException as e :
235
235
self .fail (
236
236
"ERROR: Instance not started after restore. \n {0} \n {1}" .format (
@@ -272,7 +272,7 @@ def test_restore_from_fullbackup_to_new_location_5_jobs(self):
272
272
"ERROR: File pg_compression not found in backup dir"
273
273
)
274
274
try :
275
- self .node_new .start ()
275
+ self .node_new .slow_start ()
276
276
except ProbackupException as e :
277
277
self .fail (
278
278
"ERROR: Instance not started after restore. \n {0} \n {1}" .format (
@@ -319,7 +319,7 @@ def test_restore_from_fullbackup_to_old_location_tablespace_new_location(self):
319
319
"ERROR: File pg_compression not found in new tablespace location"
320
320
)
321
321
try :
322
- self .node .start ()
322
+ self .node .slow_start ()
323
323
except ProbackupException as e :
324
324
self .fail (
325
325
"ERROR: Instance not started after restore. \n {0} \n {1}" .format (
@@ -365,7 +365,7 @@ def test_restore_from_fullbackup_to_old_location_tablespace_new_location_3_jobs(
365
365
"ERROR: File pg_compression not found in new tablespace location"
366
366
)
367
367
try :
368
- self .node .start ()
368
+ self .node .slow_start ()
369
369
except ProbackupException as e :
370
370
self .fail (
371
371
"ERROR: Instance not started after restore. \n {0} \n {1}" .format (
0 commit comments