Pamela McA'Nulty
Pamela McA'Nulty
I suspect that you _meant_ something like this: ``` class SomeClass: def catch_general_exception(self, ex): return isinstance(ex,Exception) @retry(retry_on_exception=self.catch_general_exception) def do_some_code(self): # do some code try: # some ode except Exception as...
Actually, after doing more reading, your use case is already supported: ``` @retry( retry_on_exception=(Exception,) ) ```
Our main use-case is that our security monitoring can't send data to `https://mermaid.ink`, and a bunch of our dev docs are in md