Skip to content

Commit

Permalink
fix: Feature health event task not working (#5072)
Browse files Browse the repository at this point in the history
  • Loading branch information
khvn26 authored Feb 3, 2025
1 parent d1af2f9 commit d4c4aaa
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions api/features/feature_health/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

0 comments on commit d4c4aaa

Please sign in to comment.