You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Streaming RPC closed. Will attempt to reconnect in %d seconds. Check the prior log entries and remedy any issue as necessary, or if the problem persists, report this problem to New Relic support for further investigation. Code: %s Details: %s",
143
+
retry_time,
144
+
code,
145
+
details,
146
+
)
147
+
else:
148
+
_logger.error(
149
+
"Streaming RPC closed after additional attempts. Will attempt to reconnect in %d seconds. Please report this problem to New Relic support for further investigation. Code: %s Details: %s",
150
+
retry_time,
151
+
code,
152
+
details,
153
+
)
154
+
155
+
# Reconnect channel with backoff
156
+
self.channel.close()
157
+
self.notify.wait(retry_time)
158
+
ifself.closed:
159
+
break
160
+
else:
161
+
_logger.debug("Attempting to reconnect Streaming RPC.")
0 commit comments