diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2021-10-27 17:30:24 +0200 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2021-10-28 09:18:08 +0200 |
commit | 9e5cd32056f4a497908fd24588b0f68aa645f3e3 (patch) | |
tree | 6b12ded05ff6fb12165b735d043f1f0aec4ae8aa | |
parent | a05a445f48877006bccf9cd5399279cdfec7a790 (diff) | |
download | podman-9e5cd32056f4a497908fd24588b0f68aa645f3e3.tar.gz podman-9e5cd32056f4a497908fd24588b0f68aa645f3e3.tar.bz2 podman-9e5cd32056f4a497908fd24588b0f68aa645f3e3.zip |
oci: rename sub-cgroup to runtime instead of supervisor
we are having a hard time figuring out a failure in the CI:
https://github.com/containers/podman/issues/11191
Rename the sub-cgroup created here, so we can be certain the error is
caused by this part.
[NO NEW TESTS NEEDED] we need this for the CI.
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
-rw-r--r-- | libpod/oci_conmon_linux.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/oci_conmon_linux.go b/libpod/oci_conmon_linux.go index 1719b2dfa..db906fabb 100644 --- a/libpod/oci_conmon_linux.go +++ b/libpod/oci_conmon_linux.go @@ -1016,7 +1016,7 @@ func (r *ConmonOCIRuntime) createOCIContainer(ctr *Container, restoreOptions *Co } if ctr.config.CgroupsMode == cgroupSplit { - if err := utils.MoveUnderCgroupSubtree("supervisor"); err != nil { + if err := utils.MoveUnderCgroupSubtree("runtime"); err != nil { return err } } |