From e466cd1eb25b1bf67ec29ff6ea0456f3a84b96f6 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Fri, 1 Aug 2025 00:12:06 +0300 Subject: [PATCH] fix prewarm test with grpc I added a fixture to run these tests with and without grpc, but missed passing the option to one endpoint creation. --- test_runner/regress/test_lfc_prewarm.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test_runner/regress/test_lfc_prewarm.py b/test_runner/regress/test_lfc_prewarm.py index 1da87e96d3..372490eca1 100644 --- a/test_runner/regress/test_lfc_prewarm.py +++ b/test_runner/regress/test_lfc_prewarm.py @@ -140,6 +140,7 @@ def test_lfc_prewarm(neon_simple_env: NeonEnv, method: PrewarmMethod, grpc: bool config_lines=cfg, autoprewarm=True, offload_lfc_interval_seconds=AUTOOFFLOAD_INTERVAL_SECS, + grpc=grpc, ) else: endpoint = env.endpoints.create_start(branch_name="main", config_lines=cfg, grpc=grpc)