diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-17 14:43:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-17 14:43:21 -0400 |
commit | ba289dcd79e3a2b5ec5dc02bd8adb84c93bef577 (patch) | |
tree | 977792d0b732bb67f9270d34e30bfac3cb5aab73 /pkg/domain/entities | |
parent | a5884c07dfb092eab88cf153238e714910388a06 (diff) | |
parent | 44a8cf867665927111fe9ea03711c8fabfc7d4a2 (diff) | |
download | podman-ba289dcd79e3a2b5ec5dc02bd8adb84c93bef577.tar.gz podman-ba289dcd79e3a2b5ec5dc02bd8adb84c93bef577.tar.bz2 podman-ba289dcd79e3a2b5ec5dc02bd8adb84c93bef577.zip |
Merge pull request #5868 from baude/v2t2
Fixes for system tests
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/images.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/domain/entities/images.go b/pkg/domain/entities/images.go index 78ebb8805..3a6d159e4 100644 --- a/pkg/domain/entities/images.go +++ b/pkg/domain/entities/images.go @@ -50,10 +50,10 @@ func (i *Image) Id() string { } type ImageSummary struct { - ID string `json:"Id"` + ID string ParentId string `json:",omitempty"` RepoTags []string `json:",omitempty"` - Created int64 `json:",omitempty"` + Created time.Time `json:",omitempty"` Size int64 `json:",omitempty"` SharedSize int `json:",omitempty"` VirtualSize int64 `json:",omitempty"` |