summaryrefslogtreecommitdiff
path: root/pkg/api/handlers/utils/containers.go
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2020-03-19 10:05:10 -0500
committerBrent Baude <bbaude@redhat.com>2020-03-19 10:05:10 -0500
commitd375424854b93e208c9605a2f1612a88db5035ec (patch)
treeaea09103eb424371d2126c692f8d3a820a996856 /pkg/api/handlers/utils/containers.go
parente87fe4dbbbc55be42d7a31f5415f55d2ff99f81b (diff)
downloadpodman-d375424854b93e208c9605a2f1612a88db5035ec.tar.gz
podman-d375424854b93e208c9605a2f1612a88db5035ec.tar.bz2
podman-d375424854b93e208c9605a2f1612a88db5035ec.zip
fix reported compat issues
honor -1 in in list containers for compatibility mode. it is commonly used to indicate no limit. change the json id parameter to Id in container create. Fixes: #5553 Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/api/handlers/utils/containers.go')
-rw-r--r--pkg/api/handlers/utils/containers.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/api/handlers/utils/containers.go b/pkg/api/handlers/utils/containers.go
index d5a79bdc8..bbe4cee3c 100644
--- a/pkg/api/handlers/utils/containers.go
+++ b/pkg/api/handlers/utils/containers.go
@@ -16,7 +16,7 @@ import (
// ContainerCreateResponse is the response struct for creating a container
type ContainerCreateResponse struct {
// ID of the container created
- ID string `json:"id"`
+ ID string `json:"Id"`
// Warnings during container creation
Warnings []string `json:"Warnings"`
}