We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c68261e commit e29107dCopy full SHA for e29107d
cli/format.go
@@ -325,9 +325,11 @@ func (f *Format) walkFilesystem(ctx context.Context) func() error {
325
}
326
327
328
+// applyFormatters
329
func (f *Format) applyFormatters(ctx context.Context) func() error {
- // create our own errgroup for concurrent formatting tasks
330
- fg, ctx := errgroup.WithContext(ctx)
+ // 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{}
333
// simple optimization to avoid too many concurrent formatting tasks
334
// we can queue them up faster than the formatters can process them, this paces things a bit
335
fg.SetLimit(runtime.NumCPU())
0 commit comments