From ace61123e307406c5cfa5651217df6ee53d2706a Mon Sep 17 00:00:00 2001 From: Cesar De la Torre Date: Thu, 12 Oct 2017 18:27:13 -0700 Subject: [PATCH] Increased number of retries with exponential backoff and Circuir-Breaker so minimizes the risk of open circuit when spinning up the containers for the first time in Docker. --- src/Web/WebMVC/appsettings.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Web/WebMVC/appsettings.json b/src/Web/WebMVC/appsettings.json index d728eeb6f..161e247a6 100644 --- a/src/Web/WebMVC/appsettings.json +++ b/src/Web/WebMVC/appsettings.json @@ -22,6 +22,6 @@ "ApplicationInsights": { "InstrumentationKey": "" }, - "HttpClientRetryCount": 6, - "HttpClientExceptionsAllowedBeforeBreaking": 5 + "HttpClientRetryCount": 8, + "HttpClientExceptionsAllowedBeforeBreaking": 7 } \ No newline at end of file