From d759fcb8bdb143a4d9c52a6fb58d79c5939a5d5e Mon Sep 17 00:00:00 2001 From: Konstantin Knizhnik Date: Mon, 9 Jun 2025 21:01:30 +0300 Subject: [PATCH] Increase wait LFC prewarm timeout (#12174) ## Problem See https://github.com/neondatabase/neon/issues/12171 ## Summary of changes Increase LFC prewarm wait timeout to 1 minute Co-authored-by: Konstantin Knizhnik --- test_runner/fixtures/endpoint/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_runner/fixtures/endpoint/http.py b/test_runner/fixtures/endpoint/http.py index 4b4b98aa6c..6d37dd1cb1 100644 --- a/test_runner/fixtures/endpoint/http.py +++ b/test_runner/fixtures/endpoint/http.py @@ -77,7 +77,7 @@ class EndpointHttpClient(requests.Session): status, err = json["status"], json.get("error") assert status == "completed", f"{status}, error {err}" - wait_until(prewarmed) + wait_until(prewarmed, timeout=60) def offload_lfc(self): url = f"http://localhost:{self.external_port}/lfc/offload"