Просмотр исходного кода

docs(core): Clarify activeQueues docs

Michael Bromley 4 лет назад
Родитель
Сommit
d85649502f
1 измененных файлов с 4 добавлено и 1 удалено
  1. 4 1
      packages/core/src/config/vendure-config.ts

+ 4 - 1
packages/core/src/config/vendure-config.ts

@@ -740,7 +740,10 @@ export interface JobQueueOptions {
      * @description
      * @description
      * Defines the queues that will run in this process.
      * Defines the queues that will run in this process.
      * This can be used to configure only certain queues to run in this process.
      * This can be used to configure only certain queues to run in this process.
-     * If its empty all queues will be run
+     * If its empty all queues will be run. Note: this option is primarily intended
+     * to apply to the Worker process. Jobs will _always_ get published to the queue
+     * regardless of this setting, but this setting determines whether they get
+     * _processed_ or not.
      */
      */
     activeQueues?: string[];
     activeQueues?: string[];
     /**
     /**