Przeglądaj źródła

fix gRPC serialization for healthcheck start-period

Signed-off-by: Dong Chen <dongluo.chen@docker.com>
Dong Chen 8 lat temu
rodzic
commit
caab178509
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      daemon/cluster/convert/container.go

+ 1 - 1
daemon/cluster/convert/container.go

@@ -281,7 +281,7 @@ func containerToGRPC(c types.ContainerSpec) (*swarmapi.ContainerSpec, error) {
 func healthConfigFromGRPC(h *swarmapi.HealthConfig) *container.HealthConfig {
 	interval, _ := gogotypes.DurationFromProto(h.Interval)
 	timeout, _ := gogotypes.DurationFromProto(h.Timeout)
-	startPeriod, _ := gogotypes.DurationFromProto(h.Timeout)
+	startPeriod, _ := gogotypes.DurationFromProto(h.StartPeriod)
 	return &container.HealthConfig{
 		Test:        h.Test,
 		Interval:    interval,