Skip to content

Commit

Permalink
Ignore line for linter
Browse files Browse the repository at this point in the history
  • Loading branch information
mrz1836 committed May 31, 2024
1 parent 92a1a66 commit 677597d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ func cleanUp(pool nrredis.Pool) {
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
signal.Notify(c, syscall.SIGTERM)
signal.Notify(c, syscall.SIGKILL)
signal.Notify(c, syscall.SIGKILL) //nolint:staticcheck // ignore
go func(pool nrredis.Pool) {
<-c
_ = pool.Close()
Expand Down

0 comments on commit 677597d

Please sign in to comment.