Closes #16127: Enable loading local settings

This commit is contained in:
Jeremy Stretch 2024-05-14 08:40:34 -04:00
parent c117218332
commit fcc8eccb6c

View File

@ -801,3 +801,10 @@ for plugin_name in PLUGINS:
RQ_QUEUES.update({
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