mirror of
https://github.com/containers/podman.git
synced 2026-03-05 15:29:57 -05:00
StopContainer(): ignore one more conmon warning
Resolves: #18865 [NO NEW TESTS NEEDED] -- it's a flake Signed-off-by: Ed Santiago <santiago@redhat.com>
This commit is contained in:
@@ -429,7 +429,7 @@ func (r *ConmonOCIRuntime) StopContainer(ctr *Container, timeout uint, all bool)
|
||||
if line == "" {
|
||||
continue
|
||||
}
|
||||
if strings.Contains(line, "container not running") || strings.Contains(line, "open pidfd: No such process") {
|
||||
if strings.Contains(line, "container not running") || strings.Contains(line, "open pidfd: No such process") || strings.Contains(line, "kill container: No such process") {
|
||||
logrus.Debugf("Failure to kill container (already stopped?): logged %s", line)
|
||||
continue
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user