I understand that I can use a Break error handler and retry + Have incomplete executions. I know that’s the usual go-to solution.
But occasionally I’ll have some random module that just decides to have some downtime that day, and usually fixes itself before I even have a chance to review what went wrong.
I feel like this is always going to be a possibility for any service used. But I feel like littering my scenarios with a break handler on every single module is a bit … messy.
Is there a better way to handle something like this?