We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f63b11 commit 2ff5e71Copy full SHA for 2ff5e71
go.mod
@@ -1,6 +1,6 @@
1
module github.com/aquaproj/aqua-proxy
2
3
-go 1.19
+go 1.22.1
4
5
require (
6
github.com/suzuki-shunsuke/go-error-with-exit-code v1.0.0
pkg/cli/proxy.go
@@ -44,7 +44,7 @@ const waitDelay = 1000 * time.Hour
44
45
func setCancel(cmd *exec.Cmd) {
46
cmd.Cancel = func() error {
47
- return cmd.Process.Signal(os.Interrupt) //nolint:wrapcheck
+ return cmd.Process.Signal(os.Interrupt)
48
}
49
cmd.WaitDelay = waitDelay
50
0 commit comments