File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -111,11 +111,9 @@ def _retry_call(
111111
112112 while True :
113113 try :
114- _LOGGER .debug (f"client._retry_call.start!!!" )
115114 response_or_iterator = continuation (
116115 client_call_details , request_or_iterator
117116 )
118- _LOGGER .debug (f"client._retry_call.response_or_iterator Success!!!" )
119117
120118 if is_stream :
121119 response_or_iterator = self ._generate_response (response_or_iterator )
@@ -125,11 +123,7 @@ def _retry_call(
125123 return response_or_iterator
126124
127125 except Exception as e :
128- _LOGGER .debug (f"client._retry_call.Exception: { e } " )
129126 if e .error_code == "ERROR_GRPC_CONNECTION" :
130- _LOGGER .debug (
131- f"client._retry_call.retry_call: { retries } || _MAX_RETRIES: { _MAX_RETRIES } "
132- )
133127 if retries >= _MAX_RETRIES :
134128 channel = e .meta .get ("channel" )
135129 if channel in _GRPC_CHANNEL :
You can’t perform that action at this time.
0 commit comments