diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-01-08 06:56:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-08 06:56:15 -0500 |
commit | a0b432d29d18c7385c2c976249bdc4eec95d335a (patch) | |
tree | 9e40297a48967cb64d2f3325f9ee15b3ea31aa7f /pkg/api/handlers/libpod/system.go | |
parent | 78cda71372485f163909525f8d07194920968486 (diff) | |
parent | b059e1044f5a1bac6a531e6241e24f82c8c6a9c0 (diff) | |
download | podman-a0b432d29d18c7385c2c976249bdc4eec95d335a.tar.gz podman-a0b432d29d18c7385c2c976249bdc4eec95d335a.tar.bz2 podman-a0b432d29d18c7385c2c976249bdc4eec95d335a.zip |
Merge pull request #8912 from jwhonce/issues/8891
Restore compatible API for prune endpoints
Diffstat (limited to 'pkg/api/handlers/libpod/system.go')
-rw-r--r-- | pkg/api/handlers/libpod/system.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/api/handlers/libpod/system.go b/pkg/api/handlers/libpod/system.go index 130e563ae..c48c186ed 100644 --- a/pkg/api/handlers/libpod/system.go +++ b/pkg/api/handlers/libpod/system.go @@ -30,7 +30,7 @@ func SystemPrune(w http.ResponseWriter, r *http.Request) { return } - podPruneReport, err := PodPruneHelper(w, r) + podPruneReport, err := PodPruneHelper(r) if err != nil { utils.InternalServerError(w, err) return @@ -38,7 +38,7 @@ func SystemPrune(w http.ResponseWriter, r *http.Request) { systemPruneReport.PodPruneReport = podPruneReport // We could parallelize this, should we? - containerPruneReports, err := compat.PruneContainersHelper(w, r, nil) + containerPruneReports, err := compat.PruneContainersHelper(r, nil) if err != nil { utils.InternalServerError(w, err) return |