diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-11-23 21:17:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-23 21:17:05 +0100 |
commit | 5d55285188f15eb7662b25a3fd2915a4a72591ba (patch) | |
tree | 80fd0f55f2fd36890a3c21daa05198692062ff23 /pkg/domain | |
parent | e772ef0f92a27f2d013e3526f5a0b13927c0700c (diff) | |
parent | 6f7b7060e8c4e8e8d59532eebb0ec12da2faefe9 (diff) | |
download | podman-5d55285188f15eb7662b25a3fd2915a4a72591ba.tar.gz podman-5d55285188f15eb7662b25a3fd2915a4a72591ba.tar.bz2 podman-5d55285188f15eb7662b25a3fd2915a4a72591ba.zip |
Merge pull request #8409 from mlegenovic/master
Docker compat API fixes
Diffstat (limited to 'pkg/domain')
-rw-r--r-- | pkg/domain/entities/images.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/entities/images.go b/pkg/domain/entities/images.go index cbd6e9192..ab545d882 100644 --- a/pkg/domain/entities/images.go +++ b/pkg/domain/entities/images.go @@ -52,7 +52,7 @@ func (i *Image) Id() string { // nolint type ImageSummary struct { ID string `json:"Id"` - ParentId string `json:",omitempty"` // nolint + ParentId string // nolint RepoTags []string `json:",omitempty"` Created int64 Size int64 `json:",omitempty"` |