summaryrefslogtreecommitdiff
path: root/pkg/api/handlers/libpod/system.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-01-05 11:35:18 -0500
committerGitHub <noreply@github.com>2021-01-05 11:35:18 -0500
commitb84b7c89bb35883efebbc1ace0d1bce7e1847632 (patch)
treefa69c3b5770574faade17e5d3d9d67707ab1fdf6 /pkg/api/handlers/libpod/system.go
parentbc21fabbd7be9269187775dc74644ca898006fe8 (diff)
parentb90f7f90952f16e0c1b05e8f750b56bb43711b5e (diff)
downloadpodman-b84b7c89bb35883efebbc1ace0d1bce7e1847632.tar.gz
podman-b84b7c89bb35883efebbc1ace0d1bce7e1847632.tar.bz2
podman-b84b7c89bb35883efebbc1ace0d1bce7e1847632.zip
Merge pull request #8831 from bblenard/issue-8658-system-prune-reclaimed-space
Rework pruning to report reclaimed space
Diffstat (limited to 'pkg/api/handlers/libpod/system.go')
-rw-r--r--pkg/api/handlers/libpod/system.go19
1 files changed, 6 insertions, 13 deletions
diff --git a/pkg/api/handlers/libpod/system.go b/pkg/api/handlers/libpod/system.go
index b157dfc7b..130e563ae 100644
--- a/pkg/api/handlers/libpod/system.go
+++ b/pkg/api/handlers/libpod/system.go
@@ -38,35 +38,28 @@ func SystemPrune(w http.ResponseWriter, r *http.Request) {
systemPruneReport.PodPruneReport = podPruneReport
// We could parallelize this, should we?
- containerPruneReport, err := compat.PruneContainersHelper(w, r, nil)
+ containerPruneReports, err := compat.PruneContainersHelper(w, r, nil)
if err != nil {
utils.InternalServerError(w, err)
return
}
- systemPruneReport.ContainerPruneReport = containerPruneReport
+ systemPruneReport.ContainerPruneReports = containerPruneReports
- results, err := runtime.ImageRuntime().PruneImages(r.Context(), query.All, nil)
+ imagePruneReports, err := runtime.ImageRuntime().PruneImages(r.Context(), query.All, nil)
if err != nil {
utils.InternalServerError(w, err)
return
}
- report := entities.ImagePruneReport{
- Report: entities.Report{
- Id: results,
- Err: nil,
- },
- }
-
- systemPruneReport.ImagePruneReport = &report
+ systemPruneReport.ImagePruneReports = imagePruneReports
if query.Volumes {
- volumePruneReport, err := pruneVolumesHelper(r)
+ volumePruneReports, err := pruneVolumesHelper(r)
if err != nil {
utils.InternalServerError(w, err)
return
}
- systemPruneReport.VolumePruneReport = volumePruneReport
+ systemPruneReport.VolumePruneReports = volumePruneReports
}
utils.WriteResponse(w, http.StatusOK, systemPruneReport)
}