diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-07-01 06:38:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-01 06:38:38 -0400 |
commit | 11e98d4db2a5d8a093ec9e8a0ba439943c9c169d (patch) | |
tree | d8beddabc5d83169c77be907976779ab7a510460 /pkg/domain/entities/images.go | |
parent | 957e7a533efe2d314640afac9d3b31cc752edd80 (diff) | |
parent | 50157b2d3366ec52bbbbd468ed3d1633ed95bd24 (diff) | |
download | podman-11e98d4db2a5d8a093ec9e8a0ba439943c9c169d.tar.gz podman-11e98d4db2a5d8a093ec9e8a0ba439943c9c169d.tar.bz2 podman-11e98d4db2a5d8a093ec9e8a0ba439943c9c169d.zip |
Merge pull request #6815 from rhatdan/api
Created timesptamp returned by imagelist should be in unix format
Diffstat (limited to 'pkg/domain/entities/images.go')
-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 81f52fef5..27f887e8e 100644 --- a/pkg/domain/entities/images.go +++ b/pkg/domain/entities/images.go @@ -53,7 +53,7 @@ type ImageSummary struct { ID string `json:"Id"` ParentId string `json:",omitempty"` // nolint RepoTags []string `json:",omitempty"` - Created time.Time `json:",omitempty"` + Created int64 `json:",omitempty"` Size int64 `json:",omitempty"` SharedSize int `json:",omitempty"` VirtualSize int64 `json:",omitempty"` |