소스 검색

Fix #18515: Don't fail in DEBUG mode

When no Redis server is reachable management commands failed without
this try...except block.
Tobias Genannt 1 년 전
부모
커밋
07403f690a
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  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
         # Clear Redis cache on startup in development mode
         if settings.DEBUG:
         if settings.DEBUG:
-            cache.clear()
+            try:
+                cache.clear()
+            except Exception:
+                pass