From 63a72d99bb473043eeca78690ee09a4a94eaba6d Mon Sep 17 00:00:00 2001 From: Dmitry Rodionov Date: Thu, 11 Aug 2022 11:32:23 +0300 Subject: [PATCH] increase timeout in wait_for_upload to avoid spurious failures when testing with real s3 --- test_runner/fixtures/neon_fixtures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_runner/fixtures/neon_fixtures.py b/test_runner/fixtures/neon_fixtures.py index d5b0af3813..fe0a3193c1 100644 --- a/test_runner/fixtures/neon_fixtures.py +++ b/test_runner/fixtures/neon_fixtures.py @@ -2440,7 +2440,7 @@ def wait_for_upload(pageserver_http_client: NeonPageserverHttpClient, timeline: uuid.UUID, lsn: int): """waits for local timeline upload up to specified lsn""" - for i in range(10): + for i in range(20): current_lsn = remote_consistent_lsn(pageserver_http_client, tenant, timeline) if current_lsn >= lsn: return