@@ -908,7 +908,6 @@ def test_basic_master_and_replica_concurrent_archiving(self):
908908 initdb_params = ['--data-checksums' ],
909909 pg_options = {
910910 'checkpoint_timeout' : '30s' ,
911- 'autovacuum' : 'off' ,
912911 'archive_timeout' : '10s' })
913912
914913 if self .get_version (master ) < self .version_to_num ('9.6.0' ):
@@ -1012,8 +1011,7 @@ def test_concurrent_archiving(self):
10121011 master = self .make_simple_node (
10131012 base_dir = os .path .join (module_name , fname , 'master' ),
10141013 set_replication = True ,
1015- initdb_params = ['--data-checksums' ],
1016- pg_options = {'autovacuum' : 'off' })
1014+ initdb_params = ['--data-checksums' ])
10171015
10181016 self .init_pb (backup_dir )
10191017 self .add_instance (backup_dir , 'node' , master )
@@ -1245,8 +1243,7 @@ def test_archive_catalog(self):
12451243 initdb_params = ['--data-checksums' ],
12461244 pg_options = {
12471245 'archive_timeout' : '30s' ,
1248- 'checkpoint_timeout' : '30s' ,
1249- 'autovacuum' : 'off' })
1246+ 'checkpoint_timeout' : '30s' })
12501247
12511248 if self .get_version (master ) < self .version_to_num ('9.6.0' ):
12521249 self .del_test_dir (module_name , fname )
@@ -1568,8 +1565,7 @@ def test_archive_catalog_1(self):
15681565 initdb_params = ['--data-checksums' ],
15691566 pg_options = {
15701567 'archive_timeout' : '30s' ,
1571- 'checkpoint_timeout' : '30s' ,
1572- 'autovacuum' : 'off' })
1568+ 'checkpoint_timeout' : '30s' })
15731569
15741570 self .init_pb (backup_dir )
15751571 self .add_instance (backup_dir , 'node' , node )
@@ -1624,8 +1620,7 @@ def test_archive_catalog_2(self):
16241620 initdb_params = ['--data-checksums' ],
16251621 pg_options = {
16261622 'archive_timeout' : '30s' ,
1627- 'checkpoint_timeout' : '30s' ,
1628- 'autovacuum' : 'off' })
1623+ 'checkpoint_timeout' : '30s' })
16291624
16301625 self .init_pb (backup_dir )
16311626 self .add_instance (backup_dir , 'node' , node )
@@ -1821,8 +1816,7 @@ def test_hexadecimal_timeline(self):
18211816 node = self .make_simple_node (
18221817 base_dir = os .path .join (module_name , fname , 'node' ),
18231818 set_replication = True ,
1824- initdb_params = ['--data-checksums' ],
1825- pg_options = {'autovacuum' : 'off' })
1819+ initdb_params = ['--data-checksums' ])
18261820
18271821 self .init_pb (backup_dir )
18281822 self .add_instance (backup_dir , 'node' , node )
@@ -1885,7 +1879,6 @@ def test_archiving_and_slots(self):
18851879 set_replication = True ,
18861880 initdb_params = ['--data-checksums' ],
18871881 pg_options = {
1888- 'autovacuum' : 'off' ,
18891882 'checkpoint_timeout' : '30s' ,
18901883 'max_wal_size' : '64MB' })
18911884
@@ -2018,8 +2011,7 @@ def test_archive_pg_receivexlog_partial_handling(self):
20182011 node = self .make_simple_node (
20192012 base_dir = os .path .join (module_name , fname , 'node' ),
20202013 set_replication = True ,
2021- initdb_params = ['--data-checksums' ],
2022- pg_options = {'autovacuum' : 'off' })
2014+ initdb_params = ['--data-checksums' ])
20232015
20242016 self .init_pb (backup_dir )
20252017 self .add_instance (backup_dir , 'node' , node )
@@ -2108,8 +2100,7 @@ def test_multi_timeline_recovery_prefetching(self):
21082100 node = self .make_simple_node (
21092101 base_dir = os .path .join (module_name , fname , 'node' ),
21102102 set_replication = True ,
2111- initdb_params = ['--data-checksums' ],
2112- pg_options = {'autovacuum' : 'off' })
2103+ initdb_params = ['--data-checksums' ])
21132104
21142105 self .init_pb (backup_dir )
21152106 self .add_instance (backup_dir , 'node' , node )
@@ -2224,8 +2215,7 @@ def test_archive_get_batching_sanity(self):
22242215 node = self .make_simple_node (
22252216 base_dir = os .path .join (module_name , fname , 'node' ),
22262217 set_replication = True ,
2227- initdb_params = ['--data-checksums' ],
2228- pg_options = {'autovacuum' : 'off' })
2218+ initdb_params = ['--data-checksums' ])
22292219
22302220 if self .get_version (node ) < self .version_to_num ('9.6.0' ):
22312221 self .del_test_dir (module_name , fname )
@@ -2297,8 +2287,7 @@ def test_archive_get_prefetch_corruption(self):
22972287 node = self .make_simple_node (
22982288 base_dir = os .path .join (module_name , fname , 'node' ),
22992289 set_replication = True ,
2300- initdb_params = ['--data-checksums' ],
2301- pg_options = {'autovacuum' : 'off' })
2290+ initdb_params = ['--data-checksums' ])
23022291
23032292 self .init_pb (backup_dir )
23042293 self .add_instance (backup_dir , 'node' , node )
0 commit comments