This is an automated email from the ASF dual-hosted git repository.
bmahler pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git
The following commit(s) were added to refs/heads/master by this push:
new 621cf32ad [cgroups2] FIX: Updated `subsystems` namespace to, new,
`controllers` namespace, in tests.
621cf32ad is described below
commit 621cf32adbaf4de5dce5cc39d296a2fa2b3f7156
Author: Devin Leamy <[email protected]>
AuthorDate: Tue Mar 12 13:31:57 2024 +0000
[cgroups2] FIX: Updated `subsystems` namespace to, new, `controllers`
namespace, in tests.
The commit 35ecb9a, which renamed `subsystems` to `controllers` missed this
one instance, inside of the tests.
---
src/tests/containerizer/cgroups2_tests.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/tests/containerizer/cgroups2_tests.cpp
b/src/tests/containerizer/cgroups2_tests.cpp
index 4fbad6d93..9b15783e0 100644
--- a/src/tests/containerizer/cgroups2_tests.cpp
+++ b/src/tests/containerizer/cgroups2_tests.cpp
@@ -48,7 +48,7 @@ TEST_F(Cgroups2Test, ROOT_CGROUPS2_AvailableSubsystems)
ASSERT_SOME(cgroups2::mount());
}
- Try<set<string>> available = cgroups2::subsystems::available(
+ Try<set<string>> available = cgroups2::controllers::available(
cgroups2::ROOT_CGROUP);
ASSERT_SOME(available);