fc3i: Celery signal handlers populate task_run on every task lifecycle event

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-24 21:01:47 -04:00
parent 0cda46fcdb
commit d12b51f6b7
2 changed files with 202 additions and 0 deletions
+3
View File
@@ -84,6 +84,9 @@ def make_celery() -> Celery:
},
timezone="UTC",
)
# FC-3i: register task_run signal handlers (side-effect import).
from . import celery_signals # noqa: F401
return app