Skip to content

Commit

Permalink
chore: increase queue concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
pedronauck committed May 3, 2024
1 parent 8a4b9f4 commit f0956d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/graphql/src/infra/queue/Queue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ export type QueueData<T = unknown> = Job<T>;

export class Queue extends PgBoss {
private workOpts: PgBoss.WorkOptions = {
teamSize: 250,
teamConcurrency: 250,
teamSize: 500,
teamConcurrency: 500,
};

static defaultJobOptions: PgBoss.RetryOptions = {
Expand Down

0 comments on commit f0956d5

Please sign in to comment.