From 7253e7c3720ef345e073f69c0e87316ab7247fca Mon Sep 17 00:00:00 2001 From: Antonio Ojea Date: Mon, 10 Jun 2024 15:18:31 +0000 Subject: [PATCH] fix linter complain --- cmd/kindnet-controller/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/kindnet-controller/main.go b/cmd/kindnet-controller/main.go index 515d53a7..345c2d16 100644 --- a/cmd/kindnet-controller/main.go +++ b/cmd/kindnet-controller/main.go @@ -95,7 +95,7 @@ func main() { } go func() { - healthzServer.ListenAndServe() + _ = healthzServer.ListenAndServe() }() defer healthzServer.Close()