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 571f604 commit 32422d1Copy full SHA for 32422d1
netbox/core/views.py
@@ -594,7 +594,7 @@ def get_cached_plugins(self, request):
594
catalog_plugins_error = cache.get(self.CACHE_KEY_CATALOG_ERROR, default=False)
595
if not catalog_plugins_error:
596
catalog_plugins = get_catalog_plugins()
597
- if not catalog_plugins:
+ if not catalog_plugins and not settings.ISOLATED_DEPLOYMENT:
598
# Cache for 5 minutes to avoid spamming connection
599
cache.set(self.CACHE_KEY_CATALOG_ERROR, True, 300)
600
messages.warning(request, _("Plugins catalog could not be loaded"))
0 commit comments