Skip to content

Commit

Permalink
fix: Feature health event creation task not working
Browse files Browse the repository at this point in the history
  • Loading branch information
khvn26 committed Feb 3, 2025
1 parent 6c376e0 commit 52a4df4
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
send_feature_health_event,
)

return super().ready()

0 comments on commit 52a4df4

Please sign in to comment.