fix: reorder optional params
Some checks failed
Deploy API Server / build-and-deploy (push) Has been cancelled

This commit is contained in:
WangDL 2026-05-23 19:48:06 +08:00
parent 466acc7e83
commit 7c1e439c3b

View File

@ -16,8 +16,8 @@ export class QueueService {
private readonly logger = new Logger(QueueService.name);
constructor(
@Optional() private readonly eventBus?: any,
private readonly prisma: PrismaService,
@Optional() private readonly eventBus?: any,
@InjectQueue(QUEUE_AI_ANALYSIS) private readonly aiQueue: Queue,
@InjectQueue(QUEUE_DOCUMENT_IMPORT) private readonly importQueue: Queue,
@InjectQueue(QUEUE_NOTIFICATION) private readonly notifyQueue: Queue,