Reduce apiserver health timeout from 8s to 5s

pull/8664/head
Thomas Stromberg 2020-07-07 15:10:05 -07:00
parent 5e9bb011b7
commit f82d5c6bb2
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ func apiServerHealthz(hostname string, port int) (state.State, error) {
return nil
}
err = retry.Local(check, 8*time.Second)
err = retry.Local(check, 5*time.Second)
return st, err
}