You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The unit tests for the pidinfo class fail in the el7 builder when ubuntu-latest is used as the distro for the builder.
The problem appears to be that the host system is using cgroup2fs (new style cgroups), but the CGROUP2_SUPER_MAGIC define doesn't exist in el7, so cgroup_info_init() fails to detect cgroup2, resulting in a failure in pid_info_create().
Probably the best solution is define CGROUP2_SUPER_MAGIC manually when the define isn't found in a header.
The text was updated successfully, but these errors were encountered:
The unit tests for the
pidinfo
class fail in theel7
builder whenubuntu-latest
is used as the distro for the builder.The problem appears to be that the host system is using cgroup2fs (new style cgroups), but the
CGROUP2_SUPER_MAGIC
define doesn't exist in el7, socgroup_info_init()
fails to detect cgroup2, resulting in a failure inpid_info_create()
.Probably the best solution is define
CGROUP2_SUPER_MAGIC
manually when the define isn't found in a header.The text was updated successfully, but these errors were encountered: