From 55b5b7c53a768fb9876b60b636cdc9f86916d374 Mon Sep 17 00:00:00 2001 From: Brian Tiemann Date: Wed, 29 Jan 2025 18:22:22 -0500 Subject: [PATCH] Skip incompatible plugins during startup and remove from PLUGINS --- netbox/netbox/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/netbox/netbox/settings.py b/netbox/netbox/settings.py index 4e6e96d8a..95fa1a0b2 100644 --- a/netbox/netbox/settings.py +++ b/netbox/netbox/settings.py @@ -791,6 +791,7 @@ if 'extras.events.process_event_queue' not in EVENTS_PIPELINE: EVENTS_PIPELINE.insert(0, 'extras.events.process_event_queue') # Register any configured plugins +incompatible_plugins = [] for plugin_name in PLUGINS: try: # Import the plugin module