mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-07 05:22:56 +00:00
increase timeout in wait_for_upload to avoid spurious failures when testing with real s3
This commit is contained in:
committed by
Dmitry Rodionov
parent
116ecdf87a
commit
63a72d99bb
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user