From 3900f434fd3ef2b84065dc04508df48f288dba00 Mon Sep 17 00:00:00 2001 From: Scott Rigby Date: Thu, 13 Aug 2026 10:46:03 -0400 Subject: [PATCH] Minimal fix to build failure from #31211. This one-line fix is already in main, from #31862. but that PR relies on other refactor PRs, and all are too broad to apply to the patch release branch. Signed-off-by: Scott Rigby --- pkg/registry/registry_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/registry/registry_test.go b/pkg/registry/registry_test.go index 14f178dd3..69a4d00b1 100644 --- a/pkg/registry/registry_test.go +++ b/pkg/registry/registry_test.go @@ -129,6 +129,7 @@ func setup(suite *TestRegistry, tlsEnabled, insecure bool, auth string) { // Registry config config := &configuration.Configuration{} + lnCfg := net.ListenConfig{} ln, err := net.Listen("tcp", "127.0.0.1:0") suite.Nil(err, "no error finding free port for test registry") defer func() { _ = ln.Close() }()