summaryrefslogtreecommitdiff
path: root/pkg/domain
diff options
context:
space:
mode:
authorMatej Vasek <mvasek@redhat.com>2021-11-01 16:10:10 +0100
committerMatej Vasek <mvasek@redhat.com>2021-11-01 16:53:49 +0100
commit218d91d76d49c7329704a80411ad2c115b074f84 (patch)
tree8ef32d6ae77b05866d0eb88ff251477f07f359a1 /pkg/domain
parent85bad0cc7c68b71ab7ddb6ed09b862145c6c6d0e (diff)
downloadpodman-218d91d76d49c7329704a80411ad2c115b074f84.tar.gz
podman-218d91d76d49c7329704a80411ad2c115b074f84.tar.bz2
podman-218d91d76d49c7329704a80411ad2c115b074f84.zip
Fix libpod API conformance to swagger
* Return empty array when nothing has been pruned. * Use correct return type swagger doc-comment. Signed-off-by: Matej Vasek <mvasek@redhat.com>
Diffstat (limited to 'pkg/domain')
-rw-r--r--pkg/domain/infra/abi/images.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/infra/abi/images.go b/pkg/domain/infra/abi/images.go
index 8878bf128..7aa202334 100644
--- a/pkg/domain/infra/abi/images.go
+++ b/pkg/domain/infra/abi/images.go
@@ -57,7 +57,7 @@ func (ir *ImageEngine) Prune(ctx context.Context, opts entities.ImagePruneOption
pruneOptions.Filters = append(pruneOptions.Filters, "containers=false")
}
- var pruneReports []*reports.PruneReport
+ pruneReports := make([]*reports.PruneReport, 0)
// Now prune all images until we converge.
numPreviouslyRemovedImages := 1