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
In the docs it says the following By default, a token expires after 6 hours. You may override this by passing in ttl when creating the token. ttl is expressed in seconds.
But the source code doesn't really support that from what I can see ? 14_400 is 4 hours and not 6 hours ?
In source code of access_token.rb
6 hours in seconds; how long the access token to the server is good for
DEFAULT_TTL = 14_400
In the docs it says the following
By default, a token expires after 6 hours. You may override this by passing in ttl when creating the token. ttl is expressed in seconds.
But the source code doesn't really support that from what I can see ?
14_400
is 4 hours and not 6 hours ?In source code of
access_token.rb
Source code: https://github.com/livekit/server-sdk-ruby/blob/main/lib/livekit/access_token.rb#L8
The text was updated successfully, but these errors were encountered: