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/api/handlers/libpod/images.go | |
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/api/handlers/libpod/images.go')
-rw-r--r-- | pkg/api/handlers/libpod/images.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pkg/api/handlers/libpod/images.go b/pkg/api/handlers/libpod/images.go index 54e202103..ebcb1f460 100644 --- a/pkg/api/handlers/libpod/images.go +++ b/pkg/api/handlers/libpod/images.go @@ -112,7 +112,6 @@ func GetImages(w http.ResponseWriter, r *http.Request) { return } // libpod has additional fields that we need to populate. - is.Created = img.Created() is.ReadOnly = img.IsReadOnly() summaries[j] = is } |