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
Most interesting thing is, *linuxContainer) Destroy() thaws a container if it is paused, but we don't call it until we kill init process in the killContainer (in delete.go) only calls it when the process is gone, which never happens.
The text was updated successfully, but these errors were encountered:
Cgroup v2:
Cgroup v1:
This happens because in cgroup v2, "[p]rocesses in the frozen cgroup can be killed by a fatal signal" (https://www.kernel.org/doc/html/latest/admin-guide/cgroup-v2.html), and it's not so for cgroup v1.
Most interesting thing is,
*linuxContainer) Destroy()
thaws a container if it is paused, but we don't call it until we kill init process in thekillContainer
(in delete.go) only calls it when the process is gone, which never happens.The text was updated successfully, but these errors were encountered: