mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-21 19:47:20 -06:00
Closes #16127: Enable loading local settings
This commit is contained in:
parent
c117218332
commit
fcc8eccb6c
@ -801,3 +801,10 @@ for plugin_name in PLUGINS:
|
|||||||
RQ_QUEUES.update({
|
RQ_QUEUES.update({
|
||||||
f"{plugin_name}.{queue}": RQ_PARAMS for queue in plugin_config.queues
|
f"{plugin_name}.{queue}": RQ_PARAMS for queue in plugin_config.queues
|
||||||
})
|
})
|
||||||
|
|
||||||
|
# UNSUPPORTED FUNCTIONALITY: Import any local overrides.
|
||||||
|
try:
|
||||||
|
from .local_settings import *
|
||||||
|
_UNSUPPORTED_SETTINGS = True
|
||||||
|
except ImportError:
|
||||||
|
pass
|
||||||
|
Loading…
Reference in New Issue
Block a user