Skip to content

Commit

Permalink
chore: pr review
Browse files Browse the repository at this point in the history
  • Loading branch information
EinfachHans authored and Romakita committed Nov 20, 2023
1 parent dcfced3 commit d43a32a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/tutorials/bullmq.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ import "@tsed/bullmq"; // import bullmq ts.ed module
// All other worker configuration will be ignored
disableWorker: true,
// Specify for which queues to start a worker for.
// Defaultly for every queue added in the `queues` parameter
// When undefined falls back to all queues specified.
workerQueues: ["default"],
defaultWorkerOptions: {
// Default worker options which are applied to every worker
Expand Down
2 changes: 1 addition & 1 deletion packages/third-parties/bullmq/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ import "@tsed/bullmq"; // import bullmq ts.ed module
// All other worker configuration will be ignored
disableWorker: true,
// Specify for which queues to start a worker for.
// Defaultly for every queue added in the `queues` parameter
// When undefined falls back to all queues specified.
workerQueues: ["default"],
defaultWorkerOptions: {
// Default worker options which are applied to every worker
Expand Down
2 changes: 1 addition & 1 deletion packages/third-parties/bullmq/src/BullMQModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {BeforeInit, DIContext, runInContext} from "@tsed/common";
import {Constant, InjectorService, Module} from "@tsed/di";
import {deepMerge} from "@tsed/core";
import {getComputedType} from "@tsed/schema";
import {Job, Queue, QueueOptions, Worker, WorkerOptions} from "bullmq";
import {Job, Queue, type QueueOptions, Worker, type WorkerOptions} from "bullmq";
import {v4} from "uuid";
import {BullMQConfig} from "./config/config";
import {JobMethods} from "./contracts";
Expand Down

0 comments on commit d43a32a

Please sign in to comment.