From 4be73ffe71255659a953859f66d33fbb3f0092a9 Mon Sep 17 00:00:00 2001 From: lvlcn-t <75443136+lvlcn-t@users.noreply.github.com> Date: Tue, 23 Jan 2024 16:08:02 +0100 Subject: [PATCH] fix: http loader nil pointer reference --- pkg/config/http.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/config/http.go b/pkg/config/http.go index 4522f5eb..721f758e 100644 --- a/pkg/config/http.go +++ b/pkg/config/http.go @@ -70,6 +70,7 @@ func (hl *HttpLoader) Run(ctx context.Context) error { if err := getConfigRetry(ctx); err != nil { log.Warn("Could not get remote runtime configuration", "error", err) + continue } log.Info("Successfully got remote runtime configuration")