temp change: increase apiServerHealthz timeout

pull/11632/head
Ilya Zuyev 2021-06-22 18:19:42 -07:00
parent 88ade35fa7
commit 8222cf97c5
1 changed files with 2 additions and 1 deletions

View File

@ -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.