You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Sometimes a race condition can arise when both scheduler and
481
+
// api-server are updating the DB, which adds overhead (conflicts
482
+
// are logged) and can result in inconsistencies. This setting
483
+
// ensure that only the scheduler will do this by default.
484
+
env.insert(
485
+
"AIRFLOW__FAB__UPDATE_FAB_PERMS".into(),
486
+
EnvVar{
487
+
name:"AIRFLOW__FAB__UPDATE_FAB_PERMS".into(),
488
+
value:Some("False".into()),
489
+
..Default::default()
490
+
},
491
+
);
492
+
// Airflow 3.x uses fast-api as a backend: newer versions of uvicorn can
493
+
// cause issues with child processes. See discussion here: <https://github.com/apache/airflow/discussions/50170#discussioncomment-13265000>.
494
+
// This will be considered as part of this issue: <https://github.com/stackabletech/airflow-operator/issues/641>.
0 commit comments