From 59a958362f8b26568a10b6c31b706e74ba488542 Mon Sep 17 00:00:00 2001 From: Robert Shaw Date: Sun, 20 Jul 2025 02:19:30 +0000 Subject: [PATCH] updated Signed-off-by: Robert Shaw --- vllm/v1/engine/core.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/vllm/v1/engine/core.py b/vllm/v1/engine/core.py index 73201b3f35b32..fe51924c7784f 100644 --- a/vllm/v1/engine/core.py +++ b/vllm/v1/engine/core.py @@ -484,20 +484,16 @@ class EngineCoreProc(EngineCore): """ input_ctx = zmq.Context() is_local = local_client and client_handshake_address is None - logger.info(f"HS: {handshake_address=}, {is_local=}") handshake = self._perform_handshake(input_ctx, handshake_address, identity, is_local, vllm_config, vllm_config.parallel_config) - logger.info(f"DONE HS: {handshake=}") if client_handshake_address is None: with handshake as addresses: yield addresses else: - logger.info(f"HS: {client_handshake_address=}, {local_client=}") local_handshake = self._perform_handshake( input_ctx, client_handshake_address, identity, local_client, vllm_config) - logger.info(f"DONE HS: {local_handshake=}") with handshake as addresses, local_handshake as client_addresses: addresses.inputs = client_addresses.inputs @@ -524,8 +520,6 @@ class EngineCoreProc(EngineCore): linger=5000, bind=False) as handshake_socket: # Register engine with front-end. - logger.info(f"calling startup_handshake: {handshake_address=}") - logger.info(f"calling startup_handshake: {local_client=}") addresses = self.startup_handshake(handshake_socket, local_client, parallel_config_to_update) yield addresses