-
Notifications
You must be signed in to change notification settings - Fork 926
[auth] Retry IndexedDB errors a fixed number of times #4059
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
Conversation
🦋 Changeset detectedLatest commit: 0b73fbf The changes in this PR will be included in the next version bump. This PR includes changesets to release 7 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
There appears to be an issue with webkit where it periodically closes the connections such as when the tab is backgrounded (https://bugs.webkit.org/show_bug.cgi?id=197050). We can't repro, but Firestore did something similar and have stopped getting error reports.
4af42f4
to
0b73fbf
Compare
self.getTransaction_(dbTemp, true)); | ||
let isLocked = false; | ||
return this | ||
.withRetry_((db) => { |
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.
Does closure compile it to regular functions? I wasn't sure if you can use arrow functions in closure.
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.
seems to compile but does the const self = this
trick under the hood google/closure-compiler#2853
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.
looks good to me!
There appears to be an issue with webkit where it periodically closes the connections such as when the tab is backgrounded (https://bugs.webkit.org/show_bug.cgi?id=197050). We can't repro, but Firestore did something similar and have stopped getting error reports.
Closes #1926