try to increase api healthz wait timeout

pull/11632/head
Ilya Zuyev 2021-06-23 11:07:13 -07:00
parent 20e07836c5
commit 829da6988e
1 changed files with 1 additions and 1 deletions

View File

@ -223,7 +223,7 @@ func apiServerHealthz(hostname string, port int) (state.State, error) {
return nil
}
err = retry.Local(check, 5*time.Second)
err = retry.Local(check, 10*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.