From b84046f12c826f13388f300d4ff610537349e047 Mon Sep 17 00:00:00 2001 From: derekwaynecarr Date: Thu, 22 Sep 2016 15:19:11 -0400 Subject: [PATCH] Look at all cgroup mounts --- container/libcontainer/helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container/libcontainer/helpers.go b/container/libcontainer/helpers.go index 05d0c6e9..69116a35 100644 --- a/container/libcontainer/helpers.go +++ b/container/libcontainer/helpers.go @@ -45,7 +45,7 @@ type CgroupSubsystems struct { // Get information about the cgroup subsystems. func GetCgroupSubsystems() (CgroupSubsystems, error) { // Get all cgroup mounts. - allCgroups, err := cgroups.GetCgroupMounts() + allCgroups, err := cgroups.GetCgroupMounts(true) if err != nil { return CgroupSubsystems{}, err }