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
For description of the following file.
graphql_devise-0.17.1/lib/graphql_devise/types/credential_type.rb
field :expiry, Int, null: false
but when expiry is handled in epoch seconds, values after 2038/1/19 12:14:07 (2,147,483,647) are not available.
Also, even after applying the patch and changing the type of expiry to ID, it seems to cause a behavior problem in another place.
(I couldn't pinpoint the specific part that is adversely affected...)
Thank you in advance for your confirmation.
The text was updated successfully, but these errors were encountered:
Hi @koji-murata-spice , thanksr for message, this is an interesting insight. Do you have a project were this is replicated or the log of the error?
I'm not sure this is affecting a lot of people just yet, since this kind of tokens are short lived. For example the default expiration time for DTA is 2 weeks.
Describe the bug
For description of the following file.
graphql_devise-0.17.1/lib/graphql_devise/types/credential_type.rb
field :expiry, Int, null: false
but when expiry is handled in epoch seconds, values after 2038/1/19 12:14:07 (2,147,483,647) are not available.
Also, even after applying the patch and changing the type of expiry to ID, it seems to cause a behavior problem in another place.
(I couldn't pinpoint the specific part that is adversely affected...)
Thank you in advance for your confirmation.
The text was updated successfully, but these errors were encountered: