Explorar o código

Fix #18515: Don't fail in DEBUG mode

When no Redis server is reachable management commands failed without
this try...except block.
Tobias Genannt hai 1 ano
pai
achega
07403f690a
Modificáronse 1 ficheiros con 4 adicións e 1 borrados
  1. 4 1
      netbox/core/apps.py

+ 4 - 1
netbox/core/apps.py

@@ -28,4 +28,7 @@ class CoreConfig(AppConfig):
 
         # Clear Redis cache on startup in development mode
         if settings.DEBUG:
-            cache.clear()
+            try:
+                cache.clear()
+            except Exception:
+                pass