Skip to content

Commit

Permalink
fix type of maxDocumentsToProcess from 2 to number
Browse files Browse the repository at this point in the history
  • Loading branch information
dconeybe committed Sep 1, 2023
1 parent f424efc commit ff01e07
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,9 @@ class AsyncLocalStoreTester {
}
}

async backfillIndexes(config?: { maxDocumentsToProcess?: 2 }): Promise<void> {
async backfillIndexes(config?: {
maxDocumentsToProcess?: number;
}): Promise<void> {
await this.indexBackfiller.backfill(config?.maxDocumentsToProcess);
}
}
Expand Down

0 comments on commit ff01e07

Please sign in to comment.