From 0a13199471d2b9fc87aa1504e06b3874f03ad2d8 Mon Sep 17 00:00:00 2001 From: James Rasell Date: Tue, 30 Jan 2018 08:57:07 +0000 Subject: [PATCH] Update CLI to use ISO_8601 time format. This change updates the formatTime CLI helper function to return an ISO_8601 time format which will make CLI time usage more consistent and easier. Previosuly the time format was in US style format which was somewhat confusing to non US users. Closes #3806 --- command/helpers.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/command/helpers.go b/command/helpers.go index 690220597d4..20a34125295 100644 --- a/command/helpers.go +++ b/command/helpers.go @@ -59,7 +59,8 @@ func formatTime(t time.Time) string { // It's more confusing to display the UNIX epoch or a zero value than nothing return "" } - return t.Format("01/02/06 15:04:05 MST") + // Return ISO_8601 time format GH-3806 + return t.Format("2006-01-02T15:04:05Z07:00") } // formatUnixNanoTime is a helper for formatting time for output.