Skip to content

Commit

Permalink
[build] Fix compilation error from cherry picks.
Browse files Browse the repository at this point in the history
Minor fix to allow current builds to progress again.

Review: https://reviews.apache.org/r/75157/
  • Loading branch information
ZhouJas authored and bmahler committed Aug 9, 2024
1 parent bcb4a30 commit 9ffed5e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/slave/containerizer/mesos/isolators/cgroups2/cgroups2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ Try<Isolator*> Cgroups2IsolatorProcess::create(
{"cpu", &CpuControllerProcess::create},
{"mem", &MemoryControllerProcess::create},
{"perf_event", &PerfEventControllerProcess::create},
{"io", &IoControllerProcess::create}
{"hugetlb", &HugetlbControllerProcess::create}
{"cpuset", &CpusetControllerProcess::create}
{"io", &IoControllerProcess::create},
{"hugetlb", &HugetlbControllerProcess::create},
{"cpuset", &CpusetControllerProcess::create},
{"pids", &PidsControllerProcess::create}
};

Expand Down

0 comments on commit 9ffed5e

Please sign in to comment.