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
This commit is contained in:
James Rasell 2018-01-30 08:57:07 +00:00
parent 31e212f467
commit 06bf8e932a
No known key found for this signature in database
GPG Key ID: AA7D460F5C8377AA
1 changed files with 2 additions and 1 deletions

View File

@ -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.