You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Date format is US format only, that is very confusing for everyone else and may cause bad decisions.
Date should be using locale, or even better, ISO_8601. This format causes no confusion, alllow easy sorting and everyone will understand it https://en.wikipedia.org/wiki/ISO_8601
Reproduction steps
$ nomad job history -p e | grep Date
Submit Date = 09/12/17 15:25:33 UTC
Is this 2017/09/12 or 2017/12/09 ? or even 2009/12/17?
ISO would be 2017-09-12T15:25:33Z
This makes everything clear for everyone, not just US people
The text was updated successfully, but these errors were encountered:
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.
Closeshashicorp#3806
I'm going to lock this issue because it has been closed for 120 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
Nomad version
Nomad v0.7.0
Operating system and Environment details
debian stretch
Issue
Date format is US format only, that is very confusing for everyone else and may cause bad decisions.
Date should be using locale, or even better, ISO_8601. This format causes no confusion, alllow easy sorting and everyone will understand it
https://en.wikipedia.org/wiki/ISO_8601
Reproduction steps
Is this
2017/09/12
or2017/12/09
? or even2009/12/17?
ISO would be
2017-09-12T15:25:33Z
This makes everything clear for everyone, not just US people
The text was updated successfully, but these errors were encountered: