From e5464c0720345fca8daab03e4e4631ed9f9496c4 Mon Sep 17 00:00:00 2001 From: Bryce Kahle Date: Tue, 19 Nov 2024 16:20:20 -0800 Subject: [PATCH] ignore arguments --- pkg/process/net/common_unsupported.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/process/net/common_unsupported.go b/pkg/process/net/common_unsupported.go index 78cf18381fd853..724ce20b15ab4c 100644 --- a/pkg/process/net/common_unsupported.go +++ b/pkg/process/net/common_unsupported.go @@ -96,11 +96,11 @@ func (r *RemoteSysProbeUtil) GetDiscoveryServices() (*discoverymodel.ServicesRes } // GetPing is not supported -func (r *RemoteSysProbeUtil) GetPing(clientID string, host string, count int, interval time.Duration, timeout time.Duration) ([]byte, error) { +func (r *RemoteSysProbeUtil) GetPing(_ string, _ string, _ int, _ time.Duration, _ time.Duration) ([]byte, error) { return nil, ErrNotImplemented } // GetTraceroute is not supported -func (r *RemoteSysProbeUtil) GetTraceroute(clientID string, host string, port uint16, protocol nppayload.Protocol, maxTTL uint8, timeout time.Duration) ([]byte, error) { +func (r *RemoteSysProbeUtil) GetTraceroute(_ string, _ string, _ uint16, _ nppayload.Protocol, _ uint8, _ time.Duration) ([]byte, error) { return nil, ErrNotImplemented }