Skip to content

Commit

Permalink
Give launcher interactive enough time to exit on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
RebeccaMahany committed Nov 15, 2024
1 parent 6915ae5 commit a5d4f95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ee/debug/checkups/checkups.go
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ func RunDoctor(ctx context.Context, k types.Knapsack, w io.Writer) {
warningCheckups := []string{}

for _, c := range checkupsFor(k, doctorSupported) {
ctx, cancel := context.WithTimeout(context.TODO(), 10*time.Second)
ctx, cancel := context.WithTimeout(context.TODO(), 20*time.Second)
defer cancel()

doctorCheckup(ctx, c, w)
Expand Down

0 comments on commit a5d4f95

Please sign in to comment.