You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2021/01/19 22:22:12 UTC

[GitHub] [airflow] kaxil commented on a change in pull request #13518: Fix webserver exiting when gunicorn master crashes

kaxil commented on a change in pull request #13518:
URL: https://github.com/apache/airflow/pull/13518#discussion_r560535672



##########
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:
       Any reason for changing the log level? @drago-f5a 




----------------------------------------------------------------
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:
users@infra.apache.org