-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Description
Is your feature request related to a specific problem? Or an existing feature? Please describe.
Documentation! huzzar
Describe your proposed or preferred solution:
RetryForever only retries up to int.MaxValue at which point the policy will return. Now depending on the work done in the policy delegate this could take an exceedingly long time but there's no clear indication in the docs that if you hit int.MaxValue retries you will get your last exception and the policy will stop retrying. That's not really forever, it's more 'long enough to seem like forever to you, human'.
A note on the docs for retries explaining this would be useful as it's hard to find a definitive answer when googling around. Forever != Forever in this case.
Describe any alternative options you've considered:
Any additional info?