diff --git a/controlpanel/celery.py b/controlpanel/celery.py index 5aa3f345e..511708481 100644 --- a/controlpanel/celery.py +++ b/controlpanel/celery.py @@ -39,6 +39,7 @@ def debug_task(self): @app.task(bind=True, ignore_result=True) def worker_health_check(self): + print(f"Task {self.request.id} calling worker_health_check") Path(settings.WORKER_HEALTH_FILENAME).touch() log.debug("Worker health ping task executed")