Skip to content

Commit

Permalink
increase batch size to 100
Browse files Browse the repository at this point in the history
  • Loading branch information
sywhb committed Feb 22, 2024
1 parent f541b8f commit b947100
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api/src/jobs/integration/export_all_items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const exportAllItems = async (jobData: ExportAllItemsJobData) => {
}

const maxItems = 1000
const limit = 50
const limit = 100
let offset = 0
// get max 1000 most recent items from the database
while (offset < maxItems) {
Expand Down

0 comments on commit b947100

Please sign in to comment.