-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
time.Parse error with time.RFC3339 & time.RFC3339Nano #5294
Labels
Comments
The fixed bug was issue #3523. |
An RFC3339 can't contain both a "Z" (which means 00:00) and an offset. In your examples, 2013-04-14T15:42:09.869934827Z04:00 -- contains both Z and 04:00 time.RFC3339 itself doesn't work as an input value because it's 2006-01-02T15:04:05Z07:00, which has both Z and an offset. A time format isn't necessarily a valid input. It's a description of how to parse a time. |
Issue #9056 has been merged into this issue. |
This issue was closed.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The text was updated successfully, but these errors were encountered: