From bfb263760001d24cbe0ffe0f7072e17368c9941a Mon Sep 17 00:00:00 2001 From: Andrew Cassidy Date: Mon, 13 Oct 2025 18:59:52 -0700 Subject: [PATCH] Use localhost instead of the cache proxy address cache proxy always runs on the same machine as the internal cache server --- internal/app/run/runner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/app/run/runner.go b/internal/app/run/runner.go index 31a1b320..539947bc 100644 --- a/internal/app/run/runner.go +++ b/internal/app/run/runner.go @@ -117,7 +117,7 @@ func setupCache(cfg *config.Config, envs map[string]string) *cacheproxy.Handler cacheServer, err := artifactcache.StartHandler( cfg.Cache.Dir, - cfg.Cache.Host, + "localhost", cfg.Cache.Port, cacheSecret, log.StandardLogger().WithField("module", "cache_request"),