From 8905801afcdae2e2ab9fea3efc02683884b8246b Mon Sep 17 00:00:00 2001 From: Bryce Kahle Date: Thu, 14 Nov 2024 10:51:16 -0800 Subject: [PATCH] fix return --- cmd/system-probe/api/client/client_others.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/system-probe/api/client/client_others.go b/cmd/system-probe/api/client/client_others.go index ff9083934372d..61938de68e46c 100644 --- a/cmd/system-probe/api/client/client_others.go +++ b/cmd/system-probe/api/client/client_others.go @@ -20,6 +20,6 @@ const ( // DialContextFunc is not supported on this platform. func DialContextFunc(_ string) func(context.Context, string, string) (net.Conn, error) { return func(_ context.Context, _, _ string) (net.Conn, error) { - return ErrNotImplemented + return nil, ErrNotImplemented } }