-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
ExpiredJwtException logs wrong date #291
Comments
+1 I experienced a similar issue today:
There are Probably has to do with the following code in
@lhazlewood in general: is there any plans to move away from using |
I see there is another issue raised regarding the same question: #286 |
This has been fixed and released in 0.10.0. |
The ExpiredJwtException uses a SimpleDateFormatter in the ISO8601 format but doesn't set the timezone to UTC so the string it returns ends with a "Z" indicating it's UTC but the time is parsed in localtime.
The comparisons seem to be correct, just the message is not.
The text was updated successfully, but these errors were encountered: