From 8b46c0a2c5ca2eef7953e54ffc64a6a422c06796 Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Sun, 22 Jun 2025 15:36:48 +0300 Subject: [PATCH] Features: None; Fixes: None; Extra: 1) Remove deprecated `health_check.contrib.celery_ping` from installed apps; 2) Remove unused `HEALTHCHECK_CELERY_PING_TIMEOUT` setting. --- evibes/settings/base.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/evibes/settings/base.py b/evibes/settings/base.py index af6fdbd5..eef93773 100644 --- a/evibes/settings/base.py +++ b/evibes/settings/base.py @@ -113,7 +113,6 @@ INSTALLED_APPS: list[str] = [ "health_check.storage", "health_check.contrib.migrations", "health_check.contrib.celery", - "health_check.contrib.celery_ping", "health_check.contrib.psutil", "health_check.contrib.db_heartbeat", "cacheops", @@ -327,8 +326,6 @@ LANGUAGE_COOKIE_HTTPONLY: bool = True DATA_UPLOAD_MAX_NUMBER_FIELDS: int = 8888 -HEALTHCHECK_CELERY_PING_TIMEOUT: int = 20 - ADMINS: list[tuple[str, ...]] = [("Egor Gorbunov", "contact@fureunoir.com")] STORAGES: dict[str, dict[str, str | int | bool | None]] = {