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
With current API it's not possible to limit max retry delay while using built-in backoff types.
We have a scenario where we infinitely retry failing background operations until recovery. Once the failures start, we want to backoff exponentially using the built-in generators, but eventually limit the calculated delay to some maximum value.
Consider adding TimeSpan MaxRetryDelay? property to the retry options that will cap the generated delay value. It might be applicable both for built-in and externally provided delay generators.
With current API it's not possible to limit max retry delay while using built-in backoff types.
We have a scenario where we infinitely retry failing background operations until recovery. Once the failures start, we want to backoff exponentially using the built-in generators, but eventually limit the calculated delay to some maximum value.
Consider adding
TimeSpan MaxRetryDelay?
property to the retry options that will cap the generated delay value. It might be applicable both for built-in and externally provided delay generators.cc @martintmk
The text was updated successfully, but these errors were encountered: