In the following,
class X:
@qcore.retry(KeyError)
@asynq.async()
@classmethod
def f(cls): pass
@qcore.retry(Exception)
@classmethod
def g(cls): pass
Neither X.f nor X.g can be called any more.
Fixing this probably requires reimplementing @retry using qcore.decorators.
In the following,
Neither
X.fnorX.gcan be called any more.Fixing this probably requires reimplementing
@retryusingqcore.decorators.