Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for Windows #29935

Closed
wants to merge 16 commits into from
2 changes: 1 addition & 1 deletion airflow/jobs/local_task_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def heartbeat_callback(self, session=None):
same_process = recorded_pid == current_pid

if not IS_WINDOWS and recorded_pid is not None and not same_process:
# On windows this sometimes does not work properly as the system seems to change
# On Windows this sometimes does not work properly as the system seems to change
# PIDs in some situations. Since this prohibits using Windows systems for task
# execution, this check is skipped until the cause for this can be determined.
self.log.warning(
Expand Down