From 53438e8738c7e34430c383505d5d3b7c9ecfea27 Mon Sep 17 00:00:00 2001 From: Vincent Demeester Date: Sat, 1 Aug 2015 15:08:04 +0200 Subject: [PATCH] Remove daemon check for TEST Closes #3745 I think DEBUG is still used (might be wrong though) and according to https://github.com/docker/docker/issues/3745#issuecomment-76035979 there is now nothing in integration (all has been migrated to integration-cli) Signed-off-by: Vincent Demeester Upstream-commit: 9af6b57a5d466ab3fdea0db8ba8d9a417519a63e Component: engine --- components/engine/daemon/daemon.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/daemon/daemon.go b/components/engine/daemon/daemon.go index bbad769f0f..0fb8b0f2f3 100644 --- a/components/engine/daemon/daemon.go +++ b/components/engine/daemon/daemon.go @@ -246,7 +246,7 @@ func (daemon *Daemon) restore() error { } var ( - debug = (os.Getenv("DEBUG") != "" || os.Getenv("TEST") != "") + debug = os.Getenv("DEBUG") != "" currentDriver = daemon.driver.String() containers = make(map[string]*cr) )