diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-06-29 17:00:55 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-06-30 13:59:30 -0400 |
commit | 50157b2d3366ec52bbbbd468ed3d1633ed95bd24 (patch) | |
tree | 5b550b28adeeb48bc4cb5aea7c17e69531e6b50a /pkg/domain | |
parent | 6fbd1570f86fc2509b6842c28dc2bc2e75e696d2 (diff) | |
download | podman-50157b2d3366ec52bbbbd468ed3d1633ed95bd24.tar.gz podman-50157b2d3366ec52bbbbd468ed3d1633ed95bd24.tar.bz2 podman-50157b2d3366ec52bbbbd468ed3d1633ed95bd24.zip |
Created timestamp returned by imagelist should be in unix format
In the API, we are currently returning the image time of creation
as a string, in time.Time format. The API is for a 64 bit integer
representing Unix time.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'pkg/domain')
-rw-r--r-- | pkg/domain/entities/images.go | 2 | ||||
-rw-r--r-- | pkg/domain/infra/abi/images_list.go | 2 |
2 files changed, 2 insertions, 2 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"` diff --git a/pkg/domain/infra/abi/images_list.go b/pkg/domain/infra/abi/images_list.go index 98c041c15..92ab0a998 100644 --- a/pkg/domain/infra/abi/images_list.go +++ b/pkg/domain/infra/abi/images_list.go @@ -52,7 +52,7 @@ func (ir *ImageEngine) List(ctx context.Context, opts entities.ImageListOptions) ID: img.ID(), ConfigDigest: string(img.ConfigDigest), - Created: img.Created(), + Created: img.Created().Unix(), Dangling: img.Dangling(), Digest: string(img.Digest()), Digests: digests, |