Skip to content

Commit

Permalink
Merge branch 'feat/reduce-cardinality-queue-metrics' of github.com:ce…
Browse files Browse the repository at this point in the history
…ramicnetwork/js-ceramic into feat/reduce-cardinality-queue-metrics
  • Loading branch information
gvelez17 committed Oct 10, 2024
2 parents 347d5fb + 9c2cd29 commit 97b1810
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 97b1810

Please sign in to comment.