1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Allow redefining internally used queues

This commit is contained in:
kkthxbye-code
2022-12-05 10:04:28 +01:00
committed by Jeremy Stretch
parent 5a77791f9d
commit 080a001118
4 changed files with 23 additions and 2 deletions

View File

@ -141,6 +141,22 @@ When determining the primary IP address for a device, IPv6 is preferred over IPv
---
## QUEUE_MAPPINGS
Allows changing which queues are used internally for background tasks.
```python
QUEUE_MAPPINGS = {
'webhook': 'low',
'report': 'high',
'script': 'high',
}
```
If no queue is defined the queue named `default` will be used.
---
## RELEASE_CHECK_URL
Default: None (disabled)