Skip to content

Commit

Permalink
fix return
Browse files Browse the repository at this point in the history
  • Loading branch information
brycekahle committed Nov 14, 2024
1 parent c381229 commit 8905801
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/system-probe/api/client/client_others.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}

0 comments on commit 8905801

Please sign in to comment.