From 1dd28788f14d19ac5d9a1248769c689d9398236d 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 --- daemon/health.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/daemon/health.go b/daemon/health.go index 64531b452b..6c00f29468 100644 --- a/daemon/health.go +++ b/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 )