-
Notifications
You must be signed in to change notification settings - Fork 927
Fix index backfilling frequency. #6585
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 File Check
|
Size Report 1Affected Products
Test Logs |
Size Analysis Report 1Affected Products
Test Logs |
@@ -35,10 +35,10 @@ import { isIndexedDbTransactionError } from './simple_db'; | |||
const LOG_TAG = 'IndexBackiller'; | |||
|
|||
/** How long we wait to try running index backfill after SDK initialization. */ | |||
const INITIAL_BACKFILL_DELAY_MS = 15; | |||
const INITIAL_BACKFILL_DELAY_MS = 15 * 1000; |
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.
Nit: I think '15_000' is a cleaner way to write this.
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.
One nit, that is a personal preference.
This warrants a changelog entry; it has already been released though. |
* Fix index backfilling frequency. * Add changeset * Delete happy-forks-greet.md
No description provided.