1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2025-02-04 14:11:31 +02:00

tests: fix archive.ArchiveTest.test_replica_archive

This commit is contained in:
Grigory Smolkin 2019-04-10 22:27:07 +03:00
parent bc52046ac6
commit 8240bc2dc4

View File

@ -422,10 +422,10 @@ class ArchiveTest(ProbackupTest, unittest.TestCase):
set_replication=True,
initdb_params=['--data-checksums'],
pg_options={
'max_wal_senders': '2',
'archive_timeout': '10s',
'max_wal_size': '1GB'}
)
'checkpoint_timeout': '30s',
'max_wal_size': '16MB'})
self.init_pb(backup_dir)
# ADD INSTANCE 'MASTER'
self.add_instance(backup_dir, 'master', master)