Skip to content

Commit

Permalink
Merge pull request containerd#6571 from fuweid/fix-6402-for-runc.v1
Browse files Browse the repository at this point in the history
  • Loading branch information
fuweid committed Feb 21, 2022
2 parents c0bbaf5 + 7901f4b commit d128c37
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions runtime/v2/runc/v1/service.go
Expand Up @@ -259,9 +259,16 @@ func (s *service) Cleanup(ctx context.Context) (*taskAPI.DeleteResponse, error)
if err := mount.UnmountAll(filepath.Join(path, "rootfs"), 0); err != nil {
logrus.WithError(err).Warn("failed to cleanup rootfs mount")
}

pid, err := runcC.ReadPidFile(filepath.Join(path, process.InitPidFile))
if err != nil {
logrus.WithError(err).Warn("failed to read init pid file")
}

return &taskAPI.DeleteResponse{
ExitedAt: time.Now(),
ExitStatus: 128 + uint32(unix.SIGKILL),
Pid: uint32(pid),
}, nil
}

Expand Down

0 comments on commit d128c37

Please sign in to comment.