summaryrefslogtreecommitdiff
path: root/pipe_factory.go
diff options
context:
space:
mode:
Diffstat (limited to 'pipe_factory.go')
-rw-r--r--pipe_factory.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/pipe_factory.go b/pipe_factory.go
index 93e4b5d1..3b2f2f88 100644
--- a/pipe_factory.go
+++ b/pipe_factory.go
@@ -44,7 +44,6 @@ func (f *PipeFactory) SpawnWorker(cmd *exec.Cmd) (w *Worker, err error) {
return nil, errors.Wrap(err, "process error")
}
- // todo: timeout ?
if pid, err := fetchPID(w.rl); pid != *w.Pid {
go func(w *Worker) { w.Kill() }(w)
if wErr := w.Wait(); wErr != nil {