Просмотр исходного кода

add: RQ queues for netbox core (high, default, low, check_release)

maximumG 4 лет назад
Родитель
Сommit
8b76db2bca
1 измененных файлов с 14 добавлено и 1 удалено
  1. 14 1
      netbox/netbox/settings.py

+ 14 - 1
netbox/netbox/settings.py

@@ -569,8 +569,10 @@ else:
     }
 
 RQ_QUEUES = {
+    'high': RQ_PARAMS,
     'default': RQ_PARAMS,  # Webhooks
-    'check_releases': RQ_PARAMS,
+    'low': RQ_PARAMS,
+    'check_release': RQ_PARAMS,
 }
 
 
@@ -635,3 +637,14 @@ for plugin_name in PLUGINS:
     CACHEOPS.update({
         "{}.{}".format(plugin_name, key): value for key, value in plugin_config.caching_config.items()
     })
+
+    # Create RQ queues dedicated to the plugin
+    # we use the plugin name as a prefix for queue name's defined in the plugin config
+    # ex: mysuperplugin.mysuperqueue1
+    if type(plugin_config.queues) is not list:
+        raise ImproperlyConfigured(
+            "Plugin {} queues must be a list.".format(plugin_name)
+        )
+    RQ_QUEUES.update({
+        f"{plugin_name}.{queue}": RQ_PARAMS for queue in plugin_config.queues
+    })