From a56e85fa791a0426fdaefd079aeb667af65f8dd9 Mon Sep 17 00:00:00 2001 From: benjamin <ben@elixxir.io> Date: Thu, 20 Oct 2022 11:53:50 -0700 Subject: [PATCH] added http fetch to the list of error that kicks out of the hostpool --- cmix/gateway/hostPool.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmix/gateway/hostPool.go b/cmix/gateway/hostPool.go index 3c5582fba..df35eb0ec 100644 --- a/cmix/gateway/hostPool.go +++ b/cmix/gateway/hostPool.go @@ -48,6 +48,7 @@ var errorsList = []string{ "Host is in cool down", grpc.ErrClientConnClosing.Error(), connect.TooManyProxyError, + "Failed to fetch", } // HostManager Interface allowing storage and retrieval of Host objects -- GitLab