summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2021-02-03 07:54:12 -0500
committerMatthew Heon <matthew.heon@pm.me>2021-02-08 13:59:12 -0500
commitd620a77c67e6603e72bb6dc08e9a86bbefe8793a (patch)
tree5fea5822d8b526fcf5a2deefb3cc3d38248d089f /pkg
parent7819e49353b58fe87bdb74c33b2d999e3a7b563e (diff)
downloadpodman-d620a77c67e6603e72bb6dc08e9a86bbefe8793a.tar.gz
podman-d620a77c67e6603e72bb6dc08e9a86bbefe8793a.tar.bz2
podman-d620a77c67e6603e72bb6dc08e9a86bbefe8793a.zip
Fix invalid wait condition on kill
When using the compatability tests on kill, the kill function goes into an infinite wait loop taking all of the CPU. This change will use the correct wait function and exit properly. Fixes: https://github.com/containers/podman/issues/9206 Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'pkg')
-rw-r--r--pkg/api/handlers/compat/containers.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/api/handlers/compat/containers.go b/pkg/api/handlers/compat/containers.go
index b41987800..86508f938 100644
--- a/pkg/api/handlers/compat/containers.go
+++ b/pkg/api/handlers/compat/containers.go
@@ -233,8 +233,8 @@ func KillContainer(w http.ResponseWriter, r *http.Request) {
return
}
if sig == 0 || syscall.Signal(sig) == syscall.SIGKILL {
- var opts entities.WaitOptions
- if _, err := containerEngine.ContainerWait(r.Context(), []string{name}, opts); err != nil {
+ if _, err := utils.WaitContainer(w, r); err != nil {
+
utils.Error(w, "Something went wrong.", http.StatusInternalServerError, err)
return
}