From f60fcac5381126cea85816e19c59be73327a4297 Mon Sep 17 00:00:00 2001 From: Jake Taylor <jake@elixxir.io> Date: Tue, 27 Apr 2021 19:00:13 -0500 Subject: [PATCH] adjustments --- network/gateway/hostPool.go | 1 + 1 file changed, 1 insertion(+) diff --git a/network/gateway/hostPool.go b/network/gateway/hostPool.go index b7a4a404c..173ca2e2a 100644 --- a/network/gateway/hostPool.go +++ b/network/gateway/hostPool.go @@ -197,6 +197,7 @@ func (h *HostPool) getPreferred(targets []*id.ID) []*connect.Host { for i := 0; i < length; { if hostIdx, ok := h.hostMap[*targets[i]]; ok { result[i] = h.hostList[hostIdx] + checked[hostIdx] = nil i++ continue } -- GitLab