From 5c2a80c37d220de51c9db0c01a8e7d302348fefb Mon Sep 17 00:00:00 2001 From: Nick Hill Date: Mon, 28 Jul 2025 17:30:25 +0100 Subject: [PATCH] fix bad merge Signed-off-by: Nick Hill --- vllm/v1/engine/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vllm/v1/engine/core.py b/vllm/v1/engine/core.py index a90ffbe58b98c..bf51ebc709f96 100644 --- a/vllm/v1/engine/core.py +++ b/vllm/v1/engine/core.py @@ -330,7 +330,7 @@ class EngineCore: # Blocking until the first result is available. model_output = self.execute_model_with_error_logging( - future.result, scheduler_output) + lambda _: future.result(), scheduler_output) assert model_output is not None self.batch_queue.task_done()