summaryrefslogtreecommitdiff
path: root/pkg/api
diff options
context:
space:
mode:
authorMatej Vasek <mvasek@redhat.com>2021-11-01 20:15:00 +0100
committerMatej Vasek <mvasek@redhat.com>2021-11-01 20:19:06 +0100
commit62ee24bb7c94556c8ed63553d2695d3c2ac24418 (patch)
tree2ef3168cfdee81a7973ed339c927d30b4dea7287 /pkg/api
parenta845613d03db2c15c2aade29f78cd74c28957f1b (diff)
downloadpodman-62ee24bb7c94556c8ed63553d2695d3c2ac24418.tar.gz
podman-62ee24bb7c94556c8ed63553d2695d3c2ac24418.tar.bz2
podman-62ee24bb7c94556c8ed63553d2695d3c2ac24418.zip
More conforming libpod API and swagger types
Signed-off-by: Matej Vasek <mvasek@redhat.com>
Diffstat (limited to 'pkg/api')
-rw-r--r--pkg/api/handlers/types.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/api/handlers/types.go b/pkg/api/handlers/types.go
index b90154e30..9ad3bcca0 100644
--- a/pkg/api/handlers/types.go
+++ b/pkg/api/handlers/types.go
@@ -42,9 +42,9 @@ type ContainersPruneReport struct {
}
type LibpodContainersPruneReport struct {
- ID string `json:"id"`
- SpaceReclaimed int64 `json:"space"`
- PruneError string `json:"error"`
+ ID string `json:"Id"`
+ SpaceReclaimed int64 `json:"Space"`
+ PruneError string `json:"Err,omitempty"`
}
type Info struct {