We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 828335a + 01a9872 commit dba67f9Copy full SHA for dba67f9
src/spaceone/core/pygrpc/client.py
@@ -111,9 +111,11 @@ def _retry_call(
111
112
while True:
113
try:
114
+ _LOGGER.debug(f"client._retry_call.start!!!")
115
response_or_iterator = continuation(
116
client_call_details, request_or_iterator
117
)
118
+ _LOGGER.debug(f"client._retry_call.response_or_iterator Success!!!")
119
120
if is_stream:
121
response_or_iterator = self._generate_response(response_or_iterator)
@@ -123,7 +125,11 @@ def _retry_call(
123
125
return response_or_iterator
124
126
127
except Exception as e:
128
+ _LOGGER.debug(f"client._retry_call.Exception: {e}")
129
if e.error_code == "ERROR_GRPC_CONNECTION":
130
+ _LOGGER.debug(
131
+ f"client._retry_call.retry_call: {retries} || _MAX_RETRIES: {_MAX_RETRIES}"
132
+ )
133
if retries >= _MAX_RETRIES:
134
channel = e.meta.get("channel")
135
if channel in _GRPC_CHANNEL:
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments