We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c499232 commit 5d4c8b0Copy full SHA for 5d4c8b0
packages/firestore/src/local/index_backfiller.ts
@@ -35,10 +35,10 @@ import { isIndexedDbTransactionError } from './simple_db';
35
const LOG_TAG = 'IndexBackiller';
36
37
/** How long we wait to try running index backfill after SDK initialization. */
38
-const INITIAL_BACKFILL_DELAY_MS = 15;
+const INITIAL_BACKFILL_DELAY_MS = 15 * 1000;
39
40
/** Minimum amount of time between backfill checks, after the first one. */
41
-const REGULAR_BACKFILL_DELAY_MS = 1;
+const REGULAR_BACKFILL_DELAY_MS = 60 * 1000;
42
43
/** The maximum number of documents to process each time backfill() is called. */
44
const MAX_DOCUMENTS_TO_PROCESS = 50;
0 commit comments