From c674d3cc756742d2987d6f392f502e39673a5044 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Tue, 18 Jan 2022 16:05:35 -0500 Subject: Handle changes in docker compat mode Fixes: https://github.com/containers/podman/issues/12830 Signed-off-by: Daniel J Walsh --- pkg/api/handlers/compat/images.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'pkg/api/handlers/compat/images.go') diff --git a/pkg/api/handlers/compat/images.go b/pkg/api/handlers/compat/images.go index 97fa4ddad..23a9b12a3 100644 --- a/pkg/api/handlers/compat/images.go +++ b/pkg/api/handlers/compat/images.go @@ -138,7 +138,9 @@ func CommitContainer(w http.ResponseWriter, r *http.Request) { options.Message = query.Comment options.Author = query.Author options.Pause = query.Pause - options.Changes = strings.Fields(query.Changes) + if query.Changes != "" { + options.Changes = strings.Split(query.Changes, ",") + } ctr, err := runtime.LookupContainer(query.Container) if err != nil { utils.Error(w, "Something went wrong.", http.StatusNotFound, err) -- cgit v1.2.3-54-g00ecf