From 2fd05875d4075f056e2ba16ce17f90fcc1139d57 Mon Sep 17 00:00:00 2001 From: Robert Shaw Date: Sun, 20 Jul 2025 02:20:36 +0000 Subject: [PATCH] updated Signed-off-by: Robert Shaw --- vllm/v1/engine/core.py | 1 - vllm/v1/engine/core_client.py | 3 --- 2 files changed, 4 deletions(-) diff --git a/vllm/v1/engine/core.py b/vllm/v1/engine/core.py index 80ba91e2e7f19..ca636bf5a6f7d 100644 --- a/vllm/v1/engine/core.py +++ b/vllm/v1/engine/core.py @@ -492,7 +492,6 @@ class EngineCoreProc(EngineCore): local_handshake = self._perform_handshake( input_ctx, client_handshake_address, identity, local_client, vllm_config) - with handshake as addresses, local_handshake as client_addresses: addresses.inputs = client_addresses.inputs addresses.outputs = client_addresses.outputs diff --git a/vllm/v1/engine/core_client.py b/vllm/v1/engine/core_client.py index ac4d33aac659c..82fc1fa9937c5 100644 --- a/vllm/v1/engine/core_client.py +++ b/vllm/v1/engine/core_client.py @@ -405,15 +405,12 @@ class MPClient(EngineCoreClient): "stats_update_address") else: # Engines are managed by this client. - print(f"{vllm_config.parallel_config=}") with launch_core_engines(vllm_config, executor_class, log_stats) as (engine_manager, coordinator, addresses): self.resources.coordinator = coordinator self.resources.engine_manager = engine_manager - print("========================================") - print(f"{vllm_config.parallel_config=}") (input_address, ) = addresses.inputs (output_address, ) = addresses.outputs