diff options
author | Matej Vasek <mvasek@redhat.com> | 2021-02-01 20:13:04 +0100 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2021-02-08 14:29:24 -0500 |
commit | 9fc22932a69f39e152c672ef7b12441621a8eb5a (patch) | |
tree | 340abd1bbc449d079e9309e1e39b8c715bb7dc78 /pkg/api/handlers/libpod/containers.go | |
parent | d6625f2948f182bfe01ec81d95f9865973f3ad3b (diff) | |
download | podman-9fc22932a69f39e152c672ef7b12441621a8eb5a.tar.gz podman-9fc22932a69f39e152c672ef7b12441621a8eb5a.tar.bz2 podman-9fc22932a69f39e152c672ef7b12441621a8eb5a.zip |
Implement Docker wait conditions
Signed-off-by: Matej Vasek <mvasek@redhat.com>
Diffstat (limited to 'pkg/api/handlers/libpod/containers.go')
-rw-r--r-- | pkg/api/handlers/libpod/containers.go | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/pkg/api/handlers/libpod/containers.go b/pkg/api/handlers/libpod/containers.go index f6e348cef..619cbfd8b 100644 --- a/pkg/api/handlers/libpod/containers.go +++ b/pkg/api/handlers/libpod/containers.go @@ -4,7 +4,6 @@ import ( "io/ioutil" "net/http" "os" - "strconv" "github.com/containers/podman/v2/libpod" "github.com/containers/podman/v2/libpod/define" @@ -146,17 +145,7 @@ func GetContainer(w http.ResponseWriter, r *http.Request) { } func WaitContainer(w http.ResponseWriter, r *http.Request) { - exitCode, err := utils.WaitContainer(w, r) - if err != nil { - name := utils.GetName(r) - if errors.Cause(err) == define.ErrNoSuchCtr { - utils.ContainerNotFound(w, name, err) - return - } - logrus.Warnf("failed to wait on container %q: %v", name, err) - return - } - utils.WriteResponse(w, http.StatusOK, strconv.Itoa(int(exitCode))) + utils.WaitContainerLibpod(w, r) } func UnmountContainer(w http.ResponseWriter, r *http.Request) { |