Skip to content

Commit 1e74bff

Browse files
committed
less invasive fix
1 parent 5e4a2e0 commit 1e74bff

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

airflow/dag_processing/processor.py

+5
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,13 @@ def _parse_file_entrypoint():
5050
import structlog
5151

5252
from airflow.sdk.execution_time import task_runner
53+
from airflow.settings import configure_orm
5354
# Parse DAG file, send JSON back up!
5455

56+
# We need to reconfigure the orm here, as DagFileProcessorManager does db queries for bundles, and
57+
# the session across forks blows things up.
58+
configure_orm()
59+
5560
comms_decoder = task_runner.CommsDecoder[DagFileParseRequest, DagFileParsingResult](
5661
input=sys.stdin,
5762
decoder=TypeAdapter[DagFileParseRequest](DagFileParseRequest),

task_sdk/src/airflow/sdk/execution_time/supervisor.py

-4
Original file line numberDiff line numberDiff line change
@@ -254,10 +254,6 @@ def exit(n: int) -> NoReturn:
254254
atexit._run_exitfuncs()
255255
base_exit(n)
256256

257-
from airflow import settings
258-
259-
settings.configure_orm()
260-
261257
try:
262258
target()
263259
exit(0)

0 commit comments

Comments
 (0)