From 3146a4889af224d051cce80e7d2feabc7a6feed7 Mon Sep 17 00:00:00 2001 From: "Chambers, Jason" Date: Wed, 12 Jun 2024 23:09:40 -0400 Subject: [PATCH] Add q_queue_name to docs --- docs/customization/custom-scripts.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/customization/custom-scripts.md b/docs/customization/custom-scripts.md index 2a8f252aa..1de97d331 100644 --- a/docs/customization/custom-scripts.md +++ b/docs/customization/custom-scripts.md @@ -108,6 +108,14 @@ commit_default = False By default, a script can be scheduled for execution at a later time. Setting `scheduling_enabled` to False disables this ability: Only immediate execution will be possible. (This also disables the ability to set a recurring execution interval.) +### `rq_queue_name` + +This will override the standard `QUEUE_MAPPINGS` setting for the be process by the worker. If a worker is not set to monitor any custom mapping the job will never run. + +### `rq_queue_name` + +This will override the standard `QUEUE_MAPPINGS` setting for scripts the be process by the worker. If a worker is not set to monitor any custom mapping the job will never run. + ### `job_timeout` Set the maximum allowed runtime for the script. If not set, `RQ_DEFAULT_TIMEOUT` will be used.