Skip to content
This repository has been archived by the owner on Apr 3, 2024. It is now read-only.

monkey patch multiprocessing #63

Open
wants to merge 1 commit into
base: gh-2.0.2
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions airflow/executors/local_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
import os
import subprocess
from abc import abstractmethod
# monkey patch multiprocessing based on https://github.com/apache/airflow/issues/14896
import billiard as multiprocessing
from multiprocessing import Manager, Process
from multiprocessing.managers import SyncManager
from queue import Empty, Queue # pylint: disable=unused-import # noqa: F401
Expand Down