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
logger.error("Max retry limit reached for unknown request and response")
125
129
130
+
# Suppress the backoff library's default log that misleadingly reports interval (0s) instead of actual sleep time
131
+
kwargs.pop("logger", None)
132
+
126
133
returnbackoff.on_exception( # type: ignore # Decorator function returns a function with a different signature than the input function, so mypy can't infer the type of the returned function
0 commit comments