File tree 2 files changed +5
-4
lines changed
task_sdk/src/airflow/sdk/execution_time
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -50,8 +50,13 @@ def _parse_file_entrypoint():
50
50
import structlog
51
51
52
52
from airflow .sdk .execution_time import task_runner
53
+ from airflow .settings import configure_orm
53
54
# Parse DAG file, send JSON back up!
54
55
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
+
55
60
comms_decoder = task_runner .CommsDecoder [DagFileParseRequest , DagFileParsingResult ](
56
61
input = sys .stdin ,
57
62
decoder = TypeAdapter [DagFileParseRequest ](DagFileParseRequest ),
Original file line number Diff line number Diff line change @@ -254,10 +254,6 @@ def exit(n: int) -> NoReturn:
254
254
atexit ._run_exitfuncs ()
255
255
base_exit (n )
256
256
257
- from airflow import settings
258
-
259
- settings .configure_orm ()
260
-
261
257
try :
262
258
target ()
263
259
exit (0 )
You can’t perform that action at this time.
0 commit comments