ephraimbuddy commented on a change in pull request #16167:
URL: https://github.com/apache/airflow/pull/16167#discussion_r642065555
##########
File path: airflow/jobs/local_task_job.py
##########
@@ -95,7 +95,9 @@ def signal_handler(signum, frame):
job_id=self.id,
pool=self.pool,
):
- self.log.info("Task is not able to be run")
+ if self.task_instance.state != State.RUNNING:
+ # Only log about this for non-running tasks.
Review comment:
How about notifying that the task is running?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]