@@ -1464,30 +1464,35 @@ def test_restore_chain(self):
1464
1464
self .set_archiving (backup_dir , 'node' , node )
1465
1465
node .slow_start ()
1466
1466
1467
+ # Take FULL
1467
1468
self .backup_node (
1468
1469
backup_dir , 'node' , node )
1469
1470
1471
+ # Take DELTA
1470
1472
self .backup_node (
1471
1473
backup_dir , 'node' , node , backup_type = 'delta' )
1472
1474
1475
+ # Take ERROR DELTA
1473
1476
try :
1474
1477
self .backup_node (
1475
1478
backup_dir , 'node' , node ,
1476
1479
backup_type = 'delta' , options = ['--archive-timeout=0s' ])
1477
1480
except ProbackupException as e :
1478
1481
pass
1479
1482
1483
+ # Take ERROR DELTA
1480
1484
try :
1481
1485
self .backup_node (
1482
1486
backup_dir , 'node' , node ,
1483
1487
backup_type = 'delta' , options = ['--archive-timeout=0s' ])
1484
1488
except ProbackupException as e :
1485
1489
pass
1486
1490
1487
-
1491
+ # Take DELTA
1488
1492
self .backup_node (
1489
1493
backup_dir , 'node' , node , backup_type = 'delta' )
1490
1494
1495
+ # Take ERROR DELTA
1491
1496
try :
1492
1497
self .backup_node (
1493
1498
backup_dir , 'node' , node ,
@@ -1625,9 +1630,6 @@ def test_restore_chain_with_corrupted_backup(self):
1625
1630
# RESTORE BACKUP
1626
1631
node .cleanup ()
1627
1632
1628
- print (restore_target_id )
1629
- exit (1 )
1630
-
1631
1633
try :
1632
1634
self .restore_node (
1633
1635
backup_dir , 'node' , node , backup_id = restore_target_id )
0 commit comments