summaryrefslogtreecommitdiff
path: root/pkg/domain
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-03-24 18:07:50 +0100
committerGitHub <noreply@github.com>2020-03-24 18:07:50 +0100
commitd6f8c3e07d6fc7823531fb2492791f60374d0a22 (patch)
treea40fb6cc0ecca22fd243ad2c04d8952c183c1b66 /pkg/domain
parent14050c6941be7a03c126d0933abb84d90073446d (diff)
parent2c698f0140498938d2f648c0f5f86e3eec0f96d9 (diff)
downloadpodman-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/domain')
-rw-r--r--pkg/domain/entities/images.go2
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"`