Skip to content

Commit

Permalink
Don't bail out if docker is unreachable - recover when back up
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmidyson committed Oct 23, 2015
1 parent 81aa0d7 commit 68db031
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manager/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ func New(memoryCache *memory.InMemoryCache, sysfs sysfs.SysFs, maxHousekeepingIn

dockerInfo, err := docker.DockerInfo()
if err != nil {
return nil, err
glog.Warningf("Unable to connect to Docker: %v", err)
}
context := fs.Context{DockerRoot: docker.RootDir(), DockerInfo: dockerInfo}
fsInfo, err := fs.NewFsInfo(context)
Expand Down

0 comments on commit 68db031

Please sign in to comment.