@@ -253,9 +253,7 @@ def test_backup_multiple_external(self):
253
253
fname = self .id ().split ('.' )[3 ]
254
254
node = self .make_simple_node (
255
255
base_dir = os .path .join (module_name ,fname ,'node' ),
256
- initdb_params = ['--data-checksums' ],
257
- pg_options = {
258
- 'max_wal_senders' :'2' })
256
+ initdb_params = ['--data-checksums' ])
259
257
260
258
backup_dir = os .path .join (self .tmp_path ,module_name ,fname ,'backup' )
261
259
self .init_pb (backup_dir )
@@ -326,9 +324,7 @@ def test_external_backward_compatibility(self):
326
324
base_dir = os .path .join (module_name ,fname ,'node' ),
327
325
set_replication = True ,
328
326
initdb_params = ['--data-checksums' ],
329
- pg_options = {
330
- 'max_wal_senders' :'2' ,
331
- 'autovacuum' :'off' })
327
+ pg_options = {'autovacuum' :'off' })
332
328
333
329
self .init_pb (backup_dir ,old_binary = True )
334
330
self .show_pb (backup_dir )
@@ -429,9 +425,7 @@ def test_external_backward_compatibility_merge_1(self):
429
425
base_dir = os .path .join (module_name ,fname ,'node' ),
430
426
set_replication = True ,
431
427
initdb_params = ['--data-checksums' ],
432
- pg_options = {
433
- 'max_wal_senders' :'2' ,
434
- 'autovacuum' :'off' })
428
+ pg_options = {'autovacuum' :'off' })
435
429
436
430
self .init_pb (backup_dir ,old_binary = True )
437
431
self .show_pb (backup_dir )
@@ -523,9 +517,7 @@ def test_external_backward_compatibility_merge_2(self):
523
517
base_dir = os .path .join (module_name ,fname ,'node' ),
524
518
set_replication = True ,
525
519
initdb_params = ['--data-checksums' ],
526
- pg_options = {
527
- 'max_wal_senders' :'2' ,
528
- 'autovacuum' :'off' })
520
+ pg_options = {'autovacuum' :'off' })
529
521
530
522
self .init_pb (backup_dir ,old_binary = True )
531
523
self .show_pb (backup_dir )
@@ -641,12 +633,10 @@ def test_external_merge(self):
641
633
base_dir = os .path .join (module_name ,fname ,'node' ),
642
634
set_replication = True ,
643
635
initdb_params = ['--data-checksums' ],
644
- pg_options = {
645
- 'max_wal_senders' :'2' ,
646
- 'autovacuum' :'off' })
636
+ pg_options = {'autovacuum' :'off' })
647
637
648
638
self .init_pb (backup_dir )
649
- self .add_instance (backup_dir ,'node' ,node )
639
+ self .add_instance (backup_dir ,'node' ,node , old_binary = True )
650
640
node .slow_start ()
651
641
652
642
node .pgbench_init (scale = 5 )