mirror of
https://github.com/containers/podman.git
synced 2025-05-20 16:47:39 +08:00
Wipe PID and ConmonPID in state after container stops
Matches the behavior of Docker. Signed-off-by: Matthew Heon <matthew.heon@pm.me>
This commit is contained in:
@ -234,6 +234,8 @@ func (r *OCIRuntime) updateContainerStatus(ctr *Container, useRuntime bool) erro
|
||||
|
||||
// Alright, it exists. Transition to Stopped state.
|
||||
ctr.state.State = define.ContainerStateStopped
|
||||
ctr.state.PID = 0
|
||||
ctr.state.ConmonPID = 0
|
||||
|
||||
// Read the exit file to get our stopped time and exit code.
|
||||
return ctr.handleExitFile(exitFile, info)
|
||||
|
Reference in New Issue
Block a user