sillsdev / libpalaso

Palaso Library: A set of .Net libraries useful for developers of Language Software.
MIT License
44 stars 51 forks source link

bug: Review usages of `RetryUtility.Retry` #1294

Closed ermshiperete closed 10 months ago

ermshiperete commented 10 months ago

In the current implementation RetryUtility.Retry won't retry unless an exception list is specified. However, that parameter defaults to null.

There are several usages of RetryUtility.Retry without an exception list, particular in RobustFile, RobustIO and ClearShare/Metadata.

See also #1295

ermshiperete commented 10 months ago

RetryUtility.Retry<T> catches IOException if exceptionTypeToRetry is null, so things work correctly.