Fix logcli parallel download deadlock. (#8553)

k138
Karsten Jeschkies 3 years ago committed by GitHub
parent ea55f285b6
commit 2f8d771c6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      pkg/logcli/query/query.go

@ -273,7 +273,7 @@ type parallelJob struct {
func newParallelJob(q *Query) *parallelJob {
return &parallelJob{
q: q,
done: make(chan struct{}),
done: make(chan struct{}, 1),
}
}

Loading…
Cancel
Save