Skip to content

Commit 30d30b5

Browse files
authored
Merge pull request #321 from numtide/softer-cancel
Softer cancel
2 parents 4e8daac + e29107d commit 30d30b5

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-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())

format/formatter.go

+4
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,10 @@ func (f *Formatter) Apply(ctx context.Context, tasks []*Task) error {
6464

6565
// execute the command
6666
cmd := exec.CommandContext(ctx, f.executable, args...)
67+
// replace the default Cancel handler installed by CommandContext because it sends SIGKILL (-9).
68+
cmd.Cancel = func() error {
69+
return cmd.Process.Signal(os.Interrupt)
70+
}
6771
cmd.Dir = f.workingDir
6872

6973
// log out the command being executed

0 commit comments

Comments
 (0)