Skip to content

Commit ae376a4

Browse files
committed
loopd: fix linter issue
1 parent 8c7eee2 commit ae376a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

loopd/daemon.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ func daemon(config *config, lisCfg *listenerCfg) error {
218218
// Debug code to dump goroutines on hanging exit.
219219
go func() {
220220
time.Sleep(5 * time.Second)
221-
pprof.Lookup("goroutine").WriteTo(os.Stdout, 1)
221+
_ = pprof.Lookup("goroutine").WriteTo(os.Stdout, 1)
222222
}()
223223

224224
cancel()

0 commit comments

Comments
 (0)