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
I'm decorating a staticmethod with backoff.on_predicate and when there is an error in the decorated methods I'm getting the error, TypeError: 'staticmethod' object is not callable. It seems that backoff is storing the static method unbound to the class and attempts to run the unbound descriptor rather than the embedded function.
I'm decorating a staticmethod with
backoff.on_predicate
and when there is an error in the decorated methods I'm getting the error,TypeError: 'staticmethod' object is not callable
. It seems that backoff is storing the static method unbound to the class and attempts to run the unbound descriptor rather than the embedded function.I was able to get it to work locally by adding
in
_sync.py
(and doing something similar with the handlers).The text was updated successfully, but these errors were encountered: