RNHTTR commented on code in PR #39298:
URL: https://github.com/apache/airflow/pull/39298#discussion_r1585619655
##########
airflow/executors/base_executor.py:
##########
@@ -221,7 +221,10 @@ def heartbeat(self) -> None:
self.log.debug("%s running task instances", num_running_tasks)
self.log.debug("%s in queue", num_queued_tasks)
- self.log.debug("%s open slots", open_slots)
+ if open_slots == 0:
+ self.log.warning("Executor parallelism limit reached. 0 open
slots.")
Review Comment:
```suggestion
self.log.info("Executor parallelism limit reached. 0 open
slots.")
```
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]