diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-03-24 18:07:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-24 18:07:50 +0100 |
commit | d6f8c3e07d6fc7823531fb2492791f60374d0a22 (patch) | |
tree | a40fb6cc0ecca22fd243ad2c04d8952c183c1b66 /pkg | |
parent | 14050c6941be7a03c126d0933abb84d90073446d (diff) | |
parent | 2c698f0140498938d2f648c0f5f86e3eec0f96d9 (diff) | |
download | podman-d6f8c3e07d6fc7823531fb2492791f60374d0a22.tar.gz podman-d6f8c3e07d6fc7823531fb2492791f60374d0a22.tar.bz2 podman-d6f8c3e07d6fc7823531fb2492791f60374d0a22.zip |
Merge pull request #5596 from jwhonce/wip/history
Complete podmanV2 history command
Diffstat (limited to 'pkg')
-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 c84ed5351..f18ee2651 100644 --- a/pkg/domain/entities/images.go +++ b/pkg/domain/entities/images.go @@ -105,7 +105,7 @@ type ImageHistoryOptions struct{} type ImageHistoryLayer struct { ID string `json:"Id"` - Created int64 `json:"Created,omitempty"` + Created int64 `json:",omitempty"` CreatedBy string `json:",omitempty"` Tags []string `json:",omitempty"` Size int64 `json:",omitempty"` |