From 9befd4350881cd89a2f8ef6eff944cff4cf7e0e4 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Sat, 11 Jun 2016 00:04:05 +0200 Subject: [PATCH] remove unused defaultExitOnUnhealthy constant the '--exit-on-unhealty' option was removed, but we forgot to remove this constant. Signed-off-by: Sebastiaan van Stijn Upstream-commit: 1dd28788f14d19ac5d9a1248769c689d9398236d Component: engine --- components/engine/daemon/health.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/components/engine/daemon/health.go b/components/engine/daemon/health.go index 64531b452b..6c00f29468 100644 --- a/components/engine/daemon/health.go +++ b/components/engine/daemon/health.go @@ -32,9 +32,6 @@ const ( // for the container to be considered unhealthy. defaultProbeRetries = 3 - // Shut down a container if it becomes Unhealthy. - defaultExitOnUnhealthy = true - // Maximum number of entries to record maxLogEntries = 5 )