From 8868d132145cf80b0db9f9a2aa204b91ac1e5da6 Mon Sep 17 00:00:00 2001 From: steve-chavez Date: Sun, 17 May 2026 16:37:26 -0500 Subject: [PATCH] test: adjust sleep in test_positive_pool_metric Otherwise it's not enough time for the pool metric to reach a negative value. --- test/io/test_io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/io/test_io.py b/test/io/test_io.py index 42f0abb0c..f66e4377a 100644 --- a/test/io/test_io.py +++ b/test/io/test_io.py @@ -2192,7 +2192,7 @@ def test_positive_pool_metric(defaultenv): env = {**defaultenv, "PGHOST": pgproxyhost} with run(env=env, wait_for_readiness=False) as postgrest: - time.sleep(2) + time.sleep(3) response = postgrest.admin.get("/metrics", timeout=1) assert response.status_code == 200