79577156

Date: 2025-04-16 12:18:12
Score: 0.5
Natty:
Report link

Set the reraise=True on the retry. This will make it raise the last exception it captured instead of the RetryException.

@retry(stop=stop_after_attempt(6), wait=wait_fixed(5), reraise=True)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: lucrib