public Task StartAsync(CancellationToken cancellationToken = default)
{
return Retriable.RetryAsync(() =>
this.StartAsyncInternal(cancellationToken),
cancellationToken,
new Backoff(maxTries: 100, deltaBackoff: TimeSpan.FromSeconds(5)),
new AnyExceptionPolicy(),
false);
}
retry time 18 = -24.20:31:22.6480000
Backoff is an exponentially increasing retry delay, which is not very suitable here and will lead to long retry waiting
retry time 18 = -24.20:31:22.6480000
Backoff is an exponentially increasing retry delay, which is not very suitable here and will lead to long retry waiting