[go: nahoru, domu]

Skip to content

Commit

Permalink
fix(firestore-bigquery-export): parse batchSize correctly (#1930)
Browse files Browse the repository at this point in the history
  • Loading branch information
jauntybrain committed Jan 22, 2024
1 parent 0f10184 commit 231db83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firestore-bigquery-export/scripts/import/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ export async function parseConfig(): Promise<CliConfig | CliConfigError> {
sourceCollectionPath: sourceCollectionPath,
datasetId: dataset,
tableId: table,
batchSize: batchSize,
batchSize: parseInt(batchSize),
queryCollectionGroup: queryCollectionGroup,
datasetLocation: datasetLocation,
multiThreaded: multiThreaded,
Expand Down

0 comments on commit 231db83

Please sign in to comment.