Add q_queue_name to docs

This commit is contained in:
Chambers, Jason 2024-06-12 23:09:40 -04:00
parent c7970f0813
commit 3146a4889a

View File

@ -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.) 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` ### `job_timeout`
Set the maximum allowed runtime for the script. If not set, `RQ_DEFAULT_TIMEOUT` will be used. Set the maximum allowed runtime for the script. If not set, `RQ_DEFAULT_TIMEOUT` will be used.