From 2447d2c0c4b43006e43d02e9b73c93f08e154268 Mon Sep 17 00:00:00 2001 From: mz-ko Date: Mon, 7 Apr 2025 19:31:38 +0900 Subject: [PATCH] rollback: rollback test codes. Signed-off-by: MZC01-HYUPKO --- src/spaceone/core/pygrpc/client.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/spaceone/core/pygrpc/client.py b/src/spaceone/core/pygrpc/client.py index 08bb8d9..7fe083b 100644 --- a/src/spaceone/core/pygrpc/client.py +++ b/src/spaceone/core/pygrpc/client.py @@ -111,11 +111,9 @@ def _retry_call( while True: try: - _LOGGER.debug(f"client._retry_call.start!!!") response_or_iterator = continuation( client_call_details, request_or_iterator ) - _LOGGER.debug(f"client._retry_call.response_or_iterator Success!!!") if is_stream: response_or_iterator = self._generate_response(response_or_iterator) @@ -125,11 +123,7 @@ def _retry_call( return response_or_iterator except Exception as e: - _LOGGER.debug(f"client._retry_call.Exception: {e}") if e.error_code == "ERROR_GRPC_CONNECTION": - _LOGGER.debug( - f"client._retry_call.retry_call: {retries} || _MAX_RETRIES: {_MAX_RETRIES}" - ) if retries >= _MAX_RETRIES: channel = e.meta.get("channel") if channel in _GRPC_CHANNEL: