Skip to content

Commit 06f8085

Browse files
authored
Firestore: fix typo in log messages: IndexBackiller -> IndexBackfiller (#7905)
1 parent 537d399 commit 06f8085

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/firestore/src/local/index_backfiller.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import { PersistencePromise } from './persistence_promise';
3232
import { PersistenceTransaction } from './persistence_transaction';
3333
import { isIndexedDbTransactionError } from './simple_db';
3434

35-
const LOG_TAG = 'IndexBackiller';
35+
const LOG_TAG = 'IndexBackfiller';
3636

3737
/** How long we wait to try running index backfill after SDK initialization. */
3838
const INITIAL_BACKFILL_DELAY_MS = 15 * 1000;
@@ -76,7 +76,7 @@ export class IndexBackfillerScheduler implements Scheduler {
7676
private schedule(delay: number): void {
7777
debugAssert(
7878
this.task === null,
79-
'Cannot schedule IndexBackiller while a task is pending'
79+
'Cannot schedule IndexBackfiller while a task is pending'
8080
);
8181
logDebug(LOG_TAG, `Scheduled in ${delay}ms`);
8282
this.task = this.asyncQueue.enqueueAfterDelay(

0 commit comments

Comments
 (0)