You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to be able to specify that on error (perhaps a custom exception for this purpose), a given job will be retried again in T period of time, potentially with the ability to specify up to N times. So something along the lines of:
Schedule(() => JobFunction())).NonReentrant().ToRunEvery(1).Weekdays().At(6,30).RetryOnceIn(1).Hours();
or Schedule(() => JobFunction())).NonReentrant().ToRunEvery(1).Weekdays().At(6,30).RetryEvery(1).Hours().ForTimes(5);
The text was updated successfully, but these errors were encountered:
i would handle this in your application in the individual steps. so you can get more performance out of it (you don't retry 200 requests, if one fails)
I would like to be able to specify that on error (perhaps a custom exception for this purpose), a given job will be retried again in T period of time, potentially with the ability to specify up to N times. So something along the lines of:
Schedule(() => JobFunction())).NonReentrant().ToRunEvery(1).Weekdays().At(6,30).RetryOnceIn(1).Hours();
or
Schedule(() => JobFunction())).NonReentrant().ToRunEvery(1).Weekdays().At(6,30).RetryEvery(1).Hours().ForTimes(5);
The text was updated successfully, but these errors were encountered: