Skip to content

Commit

Permalink
Firestore: index_backfiller.ts: fix typo in log messages: IndexBackil…
Browse files Browse the repository at this point in the history
…ler -> IndexBackfiller
  • Loading branch information
dconeybe committed Dec 24, 2023
1 parent 537d399 commit 4f4fc9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/firestore/src/local/index_backfiller.ts
Expand Up @@ -32,7 +32,7 @@ import { PersistencePromise } from './persistence_promise';
import { PersistenceTransaction } from './persistence_transaction';
import { isIndexedDbTransactionError } from './simple_db';

const LOG_TAG = 'IndexBackiller';
const LOG_TAG = 'IndexBackfiller';

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

0 comments on commit 4f4fc9a

Please sign in to comment.