Skip to content

Commit

Permalink
temp change: increase apiServerHealthz timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-zuyev committed Jun 23, 2021
1 parent 88ade35 commit 8222cf9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/minikube/bootstrapper/bsutil/kverify/api_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,8 @@ func apiServerHealthz(hostname string, port int) (state.State, error) {
return nil
}

err = retry.Local(check, 5*time.Second)
// revert this !!
err = retry.Local(check, 15*time.Second)

// Don't propagate 'Stopped' upwards as an error message, as clients may interpret the err
// as an inability to get status. We need it for retry.Local, however.
Expand Down

0 comments on commit 8222cf9

Please sign in to comment.