Skip to content

Commit 11dc538

Browse files
committed
Fix lint
1 parent efa890f commit 11dc538

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/http/monitor_runner_health.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ func MonitorRunnerHealth(cmd *exec.Cmd, runnerURI string, wg *sync.WaitGroup) {
6464
done := make(chan struct{})
6565

6666
go func() {
67-
cmd.Wait()
67+
_ = cmd.Wait() // disregard error - either idle timeout or termination due to unresponsiveness
6868
close(done)
6969
}()
7070

0 commit comments

Comments
 (0)