Skip to content

Commit e29107d

Browse files
committed
fix: only cancel formatters on background errors
If any of the formatting action returns an error, keep going to surface as many errors as possible. If the user hits Ctrl-C then terminate everything.
1 parent c68261e commit e29107d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

cli/format.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -325,9 +325,11 @@ func (f *Format) walkFilesystem(ctx context.Context) func() error {
325325
}
326326
}
327327

328+
// applyFormatters
328329
func (f *Format) applyFormatters(ctx context.Context) func() error {
329-
// create our own errgroup for concurrent formatting tasks
330-
fg, ctx := errgroup.WithContext(ctx)
330+
// create our own errgroup for concurrent formatting tasks.
331+
// we don't want a cancel clause, in order to let formatters run up to the end.
332+
fg := errgroup.Group{}
331333
// simple optimization to avoid too many concurrent formatting tasks
332334
// we can queue them up faster than the formatters can process them, this paces things a bit
333335
fg.SetLimit(runtime.NumCPU())

0 commit comments

Comments
 (0)