File tree 1 file changed +0
-6
lines changed
1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -111,11 +111,9 @@ def _retry_call(
111
111
112
112
while True :
113
113
try :
114
- _LOGGER .debug (f"client._retry_call.start!!!" )
115
114
response_or_iterator = continuation (
116
115
client_call_details , request_or_iterator
117
116
)
118
- _LOGGER .debug (f"client._retry_call.response_or_iterator Success!!!" )
119
117
120
118
if is_stream :
121
119
response_or_iterator = self ._generate_response (response_or_iterator )
@@ -125,11 +123,7 @@ def _retry_call(
125
123
return response_or_iterator
126
124
127
125
except Exception as e :
128
- _LOGGER .debug (f"client._retry_call.Exception: { e } " )
129
126
if e .error_code == "ERROR_GRPC_CONNECTION" :
130
- _LOGGER .debug (
131
- f"client._retry_call.retry_call: { retries } || _MAX_RETRIES: { _MAX_RETRIES } "
132
- )
133
127
if retries >= _MAX_RETRIES :
134
128
channel = e .meta .get ("channel" )
135
129
if channel in _GRPC_CHANNEL :
You can’t perform that action at this time.
0 commit comments