summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2021-02-10 15:48:14 -0600
committerbaude <bbaude@redhat.com>2021-02-10 15:48:14 -0600
commitf28b08fe969b90f6823ec3001cc7472738a1bffc (patch)
tree28d86cb9799b7e824464777975d39b357126143a /pkg
parent4d604c10897da33b7b3677631d219481cec11c7f (diff)
downloadpodman-f28b08fe969b90f6823ec3001cc7472738a1bffc.tar.gz
podman-f28b08fe969b90f6823ec3001cc7472738a1bffc.tar.bz2
podman-f28b08fe969b90f6823ec3001cc7472738a1bffc.zip
Correct compat network prune response
Correcting the structure of the compat network prune response. They should follow {"NetworksDeleted": [<network_name>",...]} Fixes: #9310 Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'pkg')
-rw-r--r--pkg/api/handlers/compat/networks.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkg/api/handlers/compat/networks.go b/pkg/api/handlers/compat/networks.go
index 85d2db87e..83c80aac9 100644
--- a/pkg/api/handlers/compat/networks.go
+++ b/pkg/api/handlers/compat/networks.go
@@ -400,6 +400,9 @@ func Prune(w http.ResponseWriter, r *http.Request) {
utils.Error(w, "Something went wrong.", http.StatusInternalServerError, err)
return
}
+ type response struct {
+ NetworksDeleted []string
+ }
var prunedNetworks []string //nolint
for _, pr := range pruneReports {
if pr.Error != nil {
@@ -408,5 +411,5 @@ func Prune(w http.ResponseWriter, r *http.Request) {
}
prunedNetworks = append(prunedNetworks, pr.Name)
}
- utils.WriteResponse(w, http.StatusOK, prunedNetworks)
+ utils.WriteResponse(w, http.StatusOK, response{NetworksDeleted: prunedNetworks})
}