Skip to content

Commit

Permalink
bump query limit to account for lower concurrent limit
Browse files Browse the repository at this point in the history
  • Loading branch information
Bossett committed Sep 9, 2024
1 parent 122902e commit ebc9a17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/labelEmitter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default async function labelEmitter() {
action: true,
unixtimescheduled: true,
},
limit: 2 * Math.floor(env.limits.PDS_LIMIT_MAX_CONCURRENT),
limit: 4 * Math.floor(env.limits.PDS_LIMIT_MAX_CONCURRENT),
})
if (events.length > 0) {
const [completedEvents, groupedEvents, eventLog] = await processEvents(
Expand Down

0 comments on commit ebc9a17

Please sign in to comment.