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

Merge pull request #4169 from dstarner/redis-sentinel-conn-check

[Corollary to #4161] Redis Connection Check when Using Sentinel
Jeremy Stretch 6 лет назад
Родитель
Сommit
8d5ea5d005
1 измененных файлов с 0 добавлено и 17 удалено
  1. 0 17
      netbox/extras/apps.py

+ 0 - 17
netbox/extras/apps.py

@@ -8,21 +8,4 @@ class ExtrasConfig(AppConfig):
     name = "extras"
 
     def ready(self):
-
         import extras.signals
-
-        # Check that we can connect to the configured Redis database.
-        try:
-            rs = redis.Redis(
-                host=settings.WEBHOOKS_REDIS_HOST,
-                port=settings.WEBHOOKS_REDIS_PORT,
-                db=settings.WEBHOOKS_REDIS_DATABASE,
-                password=settings.WEBHOOKS_REDIS_PASSWORD or None,
-                ssl=settings.WEBHOOKS_REDIS_SSL,
-            )
-            rs.ping()
-        except redis.exceptions.ConnectionError:
-            raise ImproperlyConfigured(
-                "Unable to connect to the Redis database. Check that the Redis configuration has been defined in "
-                "configuration.py."
-            )