Don't check for cpuset cgroup, not always required?

This commit is contained in:
Darren Shepherd 2019-01-22 13:42:12 -07:00 committed by Rafael Breno
parent f828b968b9
commit dca118282a

View File

@ -166,7 +166,7 @@ func validateSystemRequirements(mountUtil mount.Interface) (features, error) {
return f, nil
}
expectedCgroups := sets.New("cpu", "cpuacct", "cpuset", "memory")
expectedCgroups := sets.New("cpu", "cpuacct", "memory")
for _, mountPoint := range mountPoints {
if mountPoint.Type == cgroupMountType {
for _, opt := range mountPoint.Opts {