Skip to content

Commit

Permalink
Update packages/core/src/state-management/named-task-queue.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Mohsin Zaidi <2236875+smrz2001@users.noreply.github.com>
  • Loading branch information
gvelez17 and smrz2001 authored Oct 10, 2024
1 parent ee58239 commit 9c2cd29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/state-management/named-task-queue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const NAMED_TASK_QUEUE_SIZE = 'named_task_queue_size'
const NAMED_TASK_QUEUE_RUN = 'named_task_queue_run'
const NAMED_TASK_QUEUE_ADD = 'named_task_queue_add'
const NAMED_TASK_QUEUE_LARGE_SIZE = 'named_task_queue_large_size'
const LARGE_QUEUE_THRESHOLD = 50
const LARGE_QUEUE_THRESHOLD = process.env.LARGE_QUEUE_THRESHOLD || 50

/**
* Set of named PQueues.
Expand Down

0 comments on commit 9c2cd29

Please sign in to comment.