|
@@ -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
|