diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-15 15:13:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-15 15:13:18 +0200 |
commit | a756161e80cd32b705bb0dfe3ec4753f883ec929 (patch) | |
tree | 9cb56a2ea3c77201de133eddad8d3bbf04b4a166 /cmd/podmanV2/images/history.go | |
parent | ffcb99d8320f7b53548af7210b9705a3590a1bb8 (diff) | |
parent | 60dde457f6dc5ec5062a946dbd0848a2b0b06a22 (diff) | |
download | podman-a756161e80cd32b705bb0dfe3ec4753f883ec929.tar.gz podman-a756161e80cd32b705bb0dfe3ec4753f883ec929.tar.bz2 podman-a756161e80cd32b705bb0dfe3ec4753f883ec929.zip |
Merge pull request #5813 from baude/v2edtests2
More system test fixes on regressions
Diffstat (limited to 'cmd/podmanV2/images/history.go')
-rw-r--r-- | cmd/podmanV2/images/history.go | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/cmd/podmanV2/images/history.go b/cmd/podmanV2/images/history.go index 48575b33a..e3bb7a051 100644 --- a/cmd/podmanV2/images/history.go +++ b/cmd/podmanV2/images/history.go @@ -53,7 +53,7 @@ func init() { flags := historyCmd.Flags() flags.StringVar(&opts.format, "format", "", "Change the output to JSON or a Go template") - flags.BoolVarP(&opts.human, "human", "H", false, "Display sizes and dates in human readable format") + flags.BoolVarP(&opts.human, "human", "H", true, "Display sizes and dates in human readable format") flags.BoolVar(&opts.noTrunc, "no-trunc", false, "Do not truncate the output") flags.BoolVar(&opts.noTrunc, "notruncate", false, "Do not truncate the output") flags.BoolVarP(&opts.quiet, "quiet", "q", false, "Display the numeric IDs only") @@ -79,7 +79,7 @@ func history(cmd *cobra.Command, args []string) error { layers := make([]layer, len(results.Layers)) for i, l := range results.Layers { layers[i].ImageHistoryLayer = l - layers[i].Created = time.Unix(l.Created, 0).Format(time.RFC3339) + layers[i].Created = l.Created.Format(time.RFC3339) } json := jsoniter.ConfigCompatibleWithStandardLibrary enc := json.NewEncoder(os.Stdout) @@ -129,7 +129,10 @@ type historyreporter struct { } func (h historyreporter) Created() string { - return units.HumanDuration(time.Since(time.Unix(h.ImageHistoryLayer.Created, 0))) + " ago" + if opts.human { + return units.HumanDuration(time.Since(h.ImageHistoryLayer.Created)) + " ago" + } + return h.ImageHistoryLayer.Created.Format(time.RFC3339) } func (h historyreporter) Size() string { |