justinpakzad commented on code in PR #73383:
URL: https://github.com/apache/airflow/pull/73383#discussion_r4057026700
##########
airflow-core/src/airflow/cli/commands/scheduler_command.py:
##########
@@ -105,3 +105,4 @@ def _serve_health_check(enable_health_check: bool = False):
finally:
if sub_proc:
sub_proc.terminate()
+ sub_proc.join()
Review Comment:
Do you mind elaborating on how this fixes the issue? The user reported that
their HTTP Health check server was not running at all, but the
`sub_proc.join()` change you added here only affects the teardown.
--
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]