We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efa890f commit 11dc538Copy full SHA for 11dc538
internal/http/monitor_runner_health.go
@@ -64,7 +64,7 @@ func MonitorRunnerHealth(cmd *exec.Cmd, runnerURI string, wg *sync.WaitGroup) {
64
done := make(chan struct{})
65
66
go func() {
67
- cmd.Wait()
+ _ = cmd.Wait() // disregard error - either idle timeout or termination due to unresponsiveness
68
close(done)
69
}()
70
0 commit comments