more_decorator.txt 531 B

12345678910111213
  1. $ python more_decorator.py
  2. Write to a database or make a network call or etc.
  3. This will be automatically retried if exception is thrown.
  4. ERROR:retry:Attempt 1/5 failed : (('Some bad value',), {})
  5. Traceback (most recent call last):
  6. File "more_decorator.py", line 14, in wrapped_f
  7. return f(*args, **kwargs)
  8. File "more_decorator.py", line 39, in save_to_database
  9. raise ValueError(arg)
  10. ValueError: Some bad value
  11. Write to a database or make a network call or etc.
  12. This will be automatically retried if exception is thrown.