-
Notifications
You must be signed in to change notification settings - Fork 24
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
retry fetch token on network error #163
retry fetch token on network error #163
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@sshader thanks for the comments, addressed those. I also included something I forgot to push earlier that was used in troubleshooting this issue - defaulting to use the Convex Client logger for unauthenticated calls (there's currently no api for providing a custom logger there). Let me know if this should be dropped, I can open a separate PR for it or just leave it out. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The logger
addition seems fine (we could probably eventually clean up some of the verbose
vs. logger
stuff, but this all seems fine)
d81da91
to
58e978f
Compare
(bump) |
A single token fetch failing due to network error can lead to an erroneous unauthenticated client state (where refresh/reload leads to authenticated state, without signing in). One example of this is a react native app fetching a token, and the app is moved to background before the request resolves. At least on iOS, when the app is active again, the fetch will fail due to network error and the user will see an unauthenticated state.
This PR:
verifyCode
portion ofverifyCodeAndSetToken