We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c117218 commit fcc8eccCopy full SHA for fcc8ecc
netbox/netbox/settings.py
@@ -801,3 +801,10 @@ def _setting(name, default=None):
801
RQ_QUEUES.update({
802
f"{plugin_name}.{queue}": RQ_PARAMS for queue in plugin_config.queues
803
})
804
+
805
+# UNSUPPORTED FUNCTIONALITY: Import any local overrides.
806
+try:
807
+ from .local_settings import *
808
+ _UNSUPPORTED_SETTINGS = True
809
+except ImportError:
810
+ pass
0 commit comments