diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-07-21 06:11:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-21 06:11:10 -0400 |
commit | 0ef01c881f291982bd8eebc9c92cb6e09b1473aa (patch) | |
tree | 77b044e178c7c8f64a79cb8f4649a75627bb0090 /pkg | |
parent | a7dcae5abc81d4c4809aebca39b2ac9db1bca3d7 (diff) | |
parent | db2f474284b18b4a2d9c3671278500c92a9c19d7 (diff) | |
download | podman-0ef01c881f291982bd8eebc9c92cb6e09b1473aa.tar.gz podman-0ef01c881f291982bd8eebc9c92cb6e09b1473aa.tar.bz2 podman-0ef01c881f291982bd8eebc9c92cb6e09b1473aa.zip |
Merge pull request #10999 from rhatdan/quota1
Drop support for the --storage-opt container flag
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/api/handlers/libpod/containers_create.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/api/handlers/libpod/containers_create.go b/pkg/api/handlers/libpod/containers_create.go index b92588346..65951861b 100644 --- a/pkg/api/handlers/libpod/containers_create.go +++ b/pkg/api/handlers/libpod/containers_create.go @@ -22,6 +22,7 @@ func CreateContainer(w http.ResponseWriter, r *http.Request) { utils.Error(w, "Something went wrong.", http.StatusInternalServerError, errors.Wrap(err, "Decode()")) return } + warn, err := generate.CompleteSpec(r.Context(), runtime, &sg) if err != nil { utils.InternalServerError(w, err) |