Description
Is there a particular reason that the start interval inherits the value from regular interval?
|
probeInterval := timeoutWithDefault(c.Config.Healthcheck.Interval, defaultProbeInterval) |
|
startInterval := timeoutWithDefault(c.Config.Healthcheck.StartInterval, probeInterval) |
|
startPeriod := timeoutWithDefault(c.Config.Healthcheck.StartPeriod, defaultStartPeriod) |
Docs indicate that the default is 5 seconds: https://docs.docker.com/reference/dockerfile/#healthcheck
This request is to have it defined as its own default value as per the docs.
I apologize if I have misread the code as I am not a Golang programmer.
Description
Is there a particular reason that the start interval inherits the value from regular interval?
moby/daemon/health.go
Lines 253 to 255 in a33b302
Docs indicate that the default is 5 seconds: https://docs.docker.com/reference/dockerfile/#healthcheck
This request is to have it defined as its own default value as per the docs.
I apologize if I have misread the code as I am not a Golang programmer.