diff --git a/src/Web/WebMVC/Services/Utilities/RetryWithExponentialBackoff.cs b/src/Web/WebMVC/Services/Utilities/RetryWithExponentialBackoff.cs index 09e3d548f..b9569c843 100644 --- a/src/Web/WebMVC/Services/Utilities/RetryWithExponentialBackoff.cs +++ b/src/Web/WebMVC/Services/Utilities/RetryWithExponentialBackoff.cs @@ -21,7 +21,7 @@ namespace Microsoft.eShopOnContainers.WebMVC.Services { private readonly int maxRetries, delayMilliseconds, maxDelayMilliseconds; - public RetryWithExponentialBackoff(int maxRetries = 10, int delayMilliseconds = 200, int maxDelayMilliseconds = 2000) + public RetryWithExponentialBackoff(int maxRetries = 50, int delayMilliseconds = 200, int maxDelayMilliseconds = 2000) { this.maxRetries = maxRetries; this.delayMilliseconds = delayMilliseconds;