Skip to content

Commit

Permalink
fix: docker backend should not close 'engine.Tail' result
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Matyushentsev <AMatyushentsev@gmail.com>
  • Loading branch information
alexmt committed Mar 12, 2023
1 parent 2171212 commit c20c442
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pipeline/backend/docker/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,6 @@ func (e *docker) Tail(ctx context.Context, step *backend.Step) (io.ReadCloser, e
_, _ = stdcopy.StdCopy(wc, wc, logs)
_ = logs.Close()
_ = wc.Close()
_ = rc.Close()
}()
return rc, nil
}
Expand Down

0 comments on commit c20c442

Please sign in to comment.