Skip to content

Commit

Permalink
Merge pull request #7363 from tstromberg/stop-harder
Browse files Browse the repository at this point in the history
Extend maximum stop retry from 30s to 120s
  • Loading branch information
tstromberg authored Apr 1, 2020
2 parents 428e6bd + b711263 commit 5306702
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/minikube/cmd/stop.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func stop(api libmachine.API, cluster config.ClusterConfig, n config.Node) bool
}
}

if err := retry.Expo(tryStop, 1*time.Second, 30*time.Second, 3); err != nil {
if err := retry.Expo(tryStop, 1*time.Second, 120*time.Second, 5); err != nil {
exit.WithError("Unable to stop VM", err)
}

Expand Down

0 comments on commit 5306702

Please sign in to comment.