From b72939530c4ce97bc0dd27e182c84355c8cd6f30 Mon Sep 17 00:00:00 2001 From: anastasia Date: Mon, 24 May 2021 15:21:57 +0300 Subject: [PATCH] increase wait_lsn timeout to make tests more stable --- pageserver/src/repository/rocksdb.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pageserver/src/repository/rocksdb.rs b/pageserver/src/repository/rocksdb.rs index 1beee970f4..8ee0e6d119 100644 --- a/pageserver/src/repository/rocksdb.rs +++ b/pageserver/src/repository/rocksdb.rs @@ -28,7 +28,7 @@ use zenith_utils::lsn::{AtomicLsn, Lsn}; use zenith_utils::seqwait::SeqWait; // Timeout when waiting or WAL receiver to catch up to an LSN given in a GetPage@LSN call. -static TIMEOUT: Duration = Duration::from_secs(60); +static TIMEOUT: Duration = Duration::from_secs(600); pub struct RocksRepository { conf: &'static PageServerConf,