fix lint warning in pkg/envoy (#4181)

Rename unused 'ctx' parameter to '_'.
This commit is contained in:
Kenneth Jenkins 2023-05-16 13:58:00 -07:00 committed by GitHub
parent 2db2d66eba
commit 79beb86924
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,7 +14,7 @@ var sysProcAttr = &syscall.SysProcAttr{
Setpgid: true,
}
func (srv *Server) runProcessCollector(ctx context.Context) {}
func (srv *Server) runProcessCollector(_ context.Context) {}
func (srv *Server) prepareRunEnvoyCommand(ctx context.Context, sharedArgs []string) (exePath string, args []string) {
if srv.cmd != nil && srv.cmd.Process != nil {