From 89d6bccc6e659d1ada507740ebdef2dcfe6cb2a6 Mon Sep 17 00:00:00 2001 From: Kim Gustyr Date: Mon, 3 Feb 2025 16:48:00 +0100 Subject: [PATCH] fix name --- api/features/feature_health/apps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/features/feature_health/apps.py b/api/features/feature_health/apps.py index 4c5f59a3d3ef..66df83af2392 100644 --- a/api/features/feature_health/apps.py +++ b/api/features/feature_health/apps.py @@ -7,7 +7,7 @@ class FeatureHealthConfig(BaseAppConfig): def ready(self): from features.feature_health.tasks import ( # noqa - send_feature_health_event, + update_feature_unhealthy_tag, ) return super().ready()