mirror of https://github.com/docker/cli.git
Hide zero-valued timestamps from service JSON
It was possible to see output like this: "UpdateStatus": { "State": "updating", "StartedAt": "2017-04-14T17:10:03.226607162Z", "CompletedAt": "1970-01-01T00:00:00Z", "Message": "update in progress" } The timestamp fields were already changed to pointers, and left nil if the timestamp value was zero. However the zero-value of a timestamp from gRPC is different from the value Go considers to be zero. gRPC uses the Unix epoch instead of Go's epoch. Therefore, check that the timestamp does not match the Unix epoch. Also, add " ago" to the timestamps as shown in "docker service inspect --pretty", as they are shown as relative times. Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>
This commit is contained in:
parent
1601dbe620
commit
5b855515e4
|
@ -224,7 +224,7 @@ func (ctx *serviceInspectContext) HasUpdateStatusStarted() bool {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ctx *serviceInspectContext) UpdateStatusStarted() string {
|
func (ctx *serviceInspectContext) UpdateStatusStarted() string {
|
||||||
return units.HumanDuration(time.Since(*ctx.Service.UpdateStatus.StartedAt))
|
return units.HumanDuration(time.Since(*ctx.Service.UpdateStatus.StartedAt)) + " ago"
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ctx *serviceInspectContext) UpdateIsCompleted() bool {
|
func (ctx *serviceInspectContext) UpdateIsCompleted() bool {
|
||||||
|
@ -232,7 +232,7 @@ func (ctx *serviceInspectContext) UpdateIsCompleted() bool {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ctx *serviceInspectContext) UpdateStatusCompleted() string {
|
func (ctx *serviceInspectContext) UpdateStatusCompleted() string {
|
||||||
return units.HumanDuration(time.Since(*ctx.Service.UpdateStatus.CompletedAt))
|
return units.HumanDuration(time.Since(*ctx.Service.UpdateStatus.CompletedAt)) + " ago"
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ctx *serviceInspectContext) UpdateStatusMessage() string {
|
func (ctx *serviceInspectContext) UpdateStatusMessage() string {
|
||||||
|
|
Loading…
Reference in New Issue