mirror of https://github.com/k3s-io/k3s
kubelet: dockershim: remove orphaned checkpoint files
parent
3a15fdbe7e
commit
9f66666a30
|
@ -243,6 +243,9 @@ func (ds *dockerService) StopPodSandbox(podSandboxID string) error {
|
||||||
// Do not return error if the container does not exist
|
// Do not return error if the container does not exist
|
||||||
if !libdocker.IsContainerNotFoundError(err) {
|
if !libdocker.IsContainerNotFoundError(err) {
|
||||||
errList = append(errList, err)
|
errList = append(errList, err)
|
||||||
|
} else {
|
||||||
|
// remove the checkpoint for any sandbox that is not found in the runtime
|
||||||
|
ds.checkpointHandler.RemoveCheckpoint(podSandboxID)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return utilerrors.NewAggregate(errList)
|
return utilerrors.NewAggregate(errList)
|
||||||
|
|
Loading…
Reference in New Issue