From 13492bf8ca135f8770601be7976612fd3c8cc75b Mon Sep 17 00:00:00 2001 From: Grigory Smolkin Date: Sun, 25 Apr 2021 15:04:06 +0300 Subject: [PATCH] tests: disable autovacuum in test_checksum_corruption_detection --- tests/incr_restore.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/incr_restore.py b/tests/incr_restore.py index 885a88c2..4838fefc 100644 --- a/tests/incr_restore.py +++ b/tests/incr_restore.py @@ -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)