Skip to content

Commit

Permalink
Use BullMQAdapter (#109)
Browse files Browse the repository at this point in the history
Co-authored-by: anemone <[email protected]>
  • Loading branch information
u1-liquid and hutchisr authored Jul 24, 2023
1 parent 7b1efd6 commit ff0166f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/backend/src/server/web/ClientServerService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { fileURLToPath } from 'node:url';
import { randomBytes } from 'node:crypto';
import { Inject, Injectable } from '@nestjs/common';
import { createBullBoard } from '@bull-board/api';
import { BullAdapter } from '@bull-board/api/bullAdapter.js';
import { BullMQAdapter } from '@bull-board/api/bullMQAdapter.js';
import { FastifyAdapter } from '@bull-board/fastify';
import ms from 'ms';
import sharp from 'sharp';
Expand Down Expand Up @@ -169,7 +169,7 @@ export class ClientServerService {
this.dbQueue,
this.objectStorageQueue,
this.webhookDeliverQueue,
].map(q => new BullAdapter(q)),
].map(q => new BullMQAdapter(q)),
serverAdapter,
});

Expand Down

0 comments on commit ff0166f

Please sign in to comment.