mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
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 <vincent@sbr.pm>
This commit is contained in:
parent
8f2dca5386
commit
9af6b57a5d
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue