From 33f7915c0dd4f23fc1737032d7e0432666d23cac Mon Sep 17 00:00:00 2001 From: Keepers Date: Mon, 22 May 2023 10:40:03 -0600 Subject: [PATCH] add kiota retry to http_wrapper (#3468) #### Does this PR need a docs update or release note? - [x] :no_entry: No #### Type of change - [x] :bug: Bugfix #### Test Plan - [x] :zap: Unit test - [x] :green_heart: E2E --- src/internal/connector/graph/http_wrapper.go | 1 + 1 file changed, 1 insertion(+) diff --git a/src/internal/connector/graph/http_wrapper.go b/src/internal/connector/graph/http_wrapper.go index bc30e88e6..7003f3079 100644 --- a/src/internal/connector/graph/http_wrapper.go +++ b/src/internal/connector/graph/http_wrapper.go @@ -145,6 +145,7 @@ func internalMiddleware(cc *clientConfig) []khttp.Middleware { MaxRetries: cc.maxRetries, Delay: cc.minDelay, }, + khttp.NewRetryHandler(), khttp.NewRedirectHandler(), &LoggingMiddleware{}, &throttlingMiddleware{newTimedFence()},