1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #15226 from vdemeester/3745-remote-TEST-env-test-from-daemon

Remove daemon check for TEST
This commit is contained in:
Tibor Vass 2015-08-01 13:10:02 -04:00
commit bf384a3e4f

View file

@ -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)
)