1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2025-01-09 14:45:47 +02:00

tests: disable autovacuum in test_checksum_corruption_detection

This commit is contained in:
Grigory Smolkin 2021-04-25 15:04:06 +03:00
parent df8aadfe2d
commit 13492bf8ca

View File

@ -136,7 +136,8 @@ class IncrRestoreTest(ProbackupTest, unittest.TestCase):
fname = self.id().split('.')[3]
node = self.make_simple_node(
base_dir=os.path.join(module_name, fname, 'node'),
initdb_params=['--data-checksums'])
initdb_params=['--data-checksums'],
pg_options={'autovacuum': 'off'})
backup_dir = os.path.join(self.tmp_path, module_name, fname, 'backup')
self.init_pb(backup_dir)