Merge pull request #7269 from tstromberg/less-noise

Set minLogCheckTime to 60 until we can  cut down on spam
pull/7263/head
Thomas Strömberg 2020-03-26 14:28:53 -07:00 committed by GitHub
commit fbe158b4d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ import (
)
// minLogCheckTime how long to wait before spamming error logs to console
const minLogCheckTime = 30 * time.Second
const minLogCheckTime = 60 * time.Second
// WaitForAPIServerProcess waits for api server to be healthy returns error if it doesn't
func WaitForAPIServerProcess(r cruntime.Manager, bs bootstrapper.Bootstrapper, cfg config.ClusterConfig, cr command.Runner, start time.Time, timeout time.Duration) error {