diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-01-21 10:07:27 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-21 10:07:27 -0500 |
commit | e3ea996919295213eacc41d01fdc4018cbc5edf6 (patch) | |
tree | 0c040f834e0c5453e61bd4e32105593c6bc14bf7 /pkg | |
parent | 6e171585027e5dfcf519cf4bdc9a281248cfe0c3 (diff) | |
parent | 653da8fe8f42d96a8ed117f8936f1187dd7288e8 (diff) | |
download | podman-e3ea996919295213eacc41d01fdc4018cbc5edf6.tar.gz podman-e3ea996919295213eacc41d01fdc4018cbc5edf6.tar.bz2 podman-e3ea996919295213eacc41d01fdc4018cbc5edf6.zip |
Merge pull request #12951 from rhatdan/commit
Fix #2 for compat commit handling of --changes
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/api/handlers/compat/images.go | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/pkg/api/handlers/compat/images.go b/pkg/api/handlers/compat/images.go index 401a7ec1b..acb2172a2 100644 --- a/pkg/api/handlers/compat/images.go +++ b/pkg/api/handlers/compat/images.go @@ -97,13 +97,13 @@ func CommitContainer(w http.ResponseWriter, r *http.Request) { runtime := r.Context().Value(api.RuntimeKey).(*libpod.Runtime) query := struct { - Author string `schema:"author"` - Changes string `schema:"changes"` - Comment string `schema:"comment"` - Container string `schema:"container"` - Pause bool `schema:"pause"` - Repo string `schema:"repo"` - Tag string `schema:"tag"` + Author string `schema:"author"` + Changes []string `schema:"changes"` + Comment string `schema:"comment"` + Container string `schema:"container"` + Pause bool `schema:"pause"` + Repo string `schema:"repo"` + Tag string `schema:"tag"` // fromSrc string # fromSrc is currently unused }{ Tag: "latest", @@ -138,8 +138,8 @@ func CommitContainer(w http.ResponseWriter, r *http.Request) { options.Message = query.Comment options.Author = query.Author options.Pause = query.Pause - if query.Changes != "" { - options.Changes = strings.Split(query.Changes, ",") + for _, change := range query.Changes { + options.Changes = append(options.Changes, strings.Split(change, "\n")...) } ctr, err := runtime.LookupContainer(query.Container) if err != nil { |