mirror of
https://github.com/containers/podman.git
synced 2025-06-25 20:26:51 +08:00
Merge pull request #15494 from vrothberg/fix-15492
libpod: UpdateContainerStatus: do not wait for container
This commit is contained in:
@ -277,15 +277,6 @@ func (r *ConmonOCIRuntime) UpdateContainerStatus(ctr *Container) error {
|
|||||||
ctr.ID(), state.Status, define.ErrInternal)
|
ctr.ID(), state.Status, define.ErrInternal)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Only grab exit status if we were not already stopped
|
|
||||||
// If we were, it should already be in the database
|
|
||||||
if ctr.state.State == define.ContainerStateStopped && oldState != define.ContainerStateStopped {
|
|
||||||
if _, err := ctr.Wait(context.Background()); err != nil {
|
|
||||||
logrus.Errorf("Waiting for container %s to exit: %v", ctr.ID(), err)
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// Handle ContainerStateStopping - keep it unless the container
|
// Handle ContainerStateStopping - keep it unless the container
|
||||||
// transitioned to no longer running.
|
// transitioned to no longer running.
|
||||||
if oldState == define.ContainerStateStopping && (ctr.state.State == define.ContainerStatePaused || ctr.state.State == define.ContainerStateRunning) {
|
if oldState == define.ContainerStateStopping && (ctr.state.State == define.ContainerStatePaused || ctr.state.State == define.ContainerStateRunning) {
|
||||||
|
Reference in New Issue
Block a user