From 813d542026803369dd81c44b355befe5ec017f72 Mon Sep 17 00:00:00 2001 From: Marc Paquette Date: Thu, 9 Feb 2023 09:58:59 -0500 Subject: [PATCH] Bump StartResponseDelayInterval to 30 seconds Bumping the startup delay default to 30 seconds --- src/code.cloudfoundry.org/healthchecker/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/code.cloudfoundry.org/healthchecker/config/config.go b/src/code.cloudfoundry.org/healthchecker/config/config.go index a101841..06c8a47 100644 --- a/src/code.cloudfoundry.org/healthchecker/config/config.go +++ b/src/code.cloudfoundry.org/healthchecker/config/config.go @@ -20,7 +20,7 @@ type HealthCheckEndpoint struct { var DefaultConfig = Config{ HealthCheckPollInterval: 10 * time.Second, HealthCheckTimeout: 5 * time.Second, - StartResponseDelayInterval: 5 * time.Second, + StartResponseDelayInterval: 30 * time.Second, StartupDelayBuffer: 5 * time.Second, LogLevel: "info", }