kaxil commented on a change in pull request #13518:
URL: https://github.com/apache/airflow/pull/13518#discussion_r560547575
##########
File path: airflow/cli/commands/webserver_command.py
##########
@@ -258,15 +258,15 @@ def _check_workers(self) -> None:
num_workers_running = self._get_num_workers_running()
if num_workers_running < self.num_workers_expected:
new_worker_count = min(
- num_workers_running - self.worker_refresh_batch_size,
self.worker_refresh_batch_size
+ self.num_workers_expected - num_workers_running,
self.worker_refresh_batch_size
)
- self.log.debug(
+ self.log.info(
Review comment:
That makes sense, can you create a new PR please to change the log level
back to info. I revert that changed before merging the PR
----------------------------------------------------------------
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]