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
When the retry mechanism performs another attempt to run the operation, it might be useful to execute a side effect - like logging or updating metrics.
Some things to consider:
how much context should such a callback have (e.g. which attempt is this)
should the callback be executed before or after the attempt? In the latter case it could include the result, which - particularly in case of error - might be useful for logging/metrics. Or perhaps both such callbacks should be available, so that we can hook into the retry lifecycle even more?
The text was updated successfully, but these errors were encountered:
When the retry mechanism performs another attempt to run the operation, it might be useful to execute a side effect - like logging or updating metrics.
Some things to consider:
The text was updated successfully, but these errors were encountered: