summaryrefslogtreecommitdiff
path: root/libpod/container_internal.go
diff options
context:
space:
mode:
authorValentin Rothberg <vrothberg@redhat.com>2022-09-12 15:22:21 +0200
committerValentin Rothberg <vrothberg@redhat.com>2022-09-13 10:56:44 +0200
commitc8c2aab50d73ab767b8eb720b4d1abbc9bb36b62 (patch)
tree1b80152569dd43811ec19d40fbba4c22750a084d /libpod/container_internal.go
parent1635fe8620fa454647cf7db2af9ed0c9b52eacfb (diff)
downloadpodman-c8c2aab50d73ab767b8eb720b4d1abbc9bb36b62.tar.gz
podman-c8c2aab50d73ab767b8eb720b4d1abbc9bb36b62.tar.bz2
podman-c8c2aab50d73ab767b8eb720b4d1abbc9bb36b62.zip
health checks: restart timers
Restart the health-check timers instead of starting them. This will surpress annoying errors stating that an already running timer cannot be started anymore. Also make sure that the transient units/timers are stopped and removed when stopping a container. Fixes: #15691 Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
Diffstat (limited to 'libpod/container_internal.go')
-rw-r--r--libpod/container_internal.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/libpod/container_internal.go b/libpod/container_internal.go
index 227bb7f1f..d61812cb7 100644
--- a/libpod/container_internal.go
+++ b/libpod/container_internal.go
@@ -1286,6 +1286,12 @@ func (c *Container) stop(timeout uint) error {
c.lock.Unlock()
}
+ if c.config.HealthCheckConfig != nil {
+ if err := c.removeTransientFiles(context.Background()); err != nil {
+ logrus.Error(err.Error())
+ }
+ }
+
stopErr := c.ociRuntime.StopContainer(c, timeout, all)
if !c.batched {