diff --git a/api/features/feature_health/apps.py b/api/features/feature_health/apps.py index 6372813387ae..66df83af2392 100644 --- a/api/features/feature_health/apps.py +++ b/api/features/feature_health/apps.py @@ -4,3 +4,10 @@ class FeatureHealthConfig(BaseAppConfig): name = "features.feature_health" default = True + + def ready(self): + from features.feature_health.tasks import ( # noqa + update_feature_unhealthy_tag, + ) + + return super().ready()