From d58f9c7f7a3bd29a6ab3f6a5a740299a4555cbc2 Mon Sep 17 00:00:00 2001 From: CYJiang <86391540+googs1025@users.noreply.github.com> Date: Fri, 30 May 2025 01:26:07 +0800 Subject: [PATCH] [Misc] Remove duplicate init for self.vllm_config (#18896) Signed-off-by: googs1025 --- vllm/v1/engine/core.py | 1 - 1 file changed, 1 deletion(-) diff --git a/vllm/v1/engine/core.py b/vllm/v1/engine/core.py index 740ba60fe231b..e6de31ab7a90f 100644 --- a/vllm/v1/engine/core.py +++ b/vllm/v1/engine/core.py @@ -123,7 +123,6 @@ class EngineCore: logger.info("Batch queue is enabled with size %d", self.batch_queue_size) self.batch_queue = queue.Queue(self.batch_queue_size) - self.vllm_config = vllm_config def _initialize_kv_caches( self, vllm_config: VllmConfig) -> tuple[int, int, KVCacheConfig]: