jedcunningham commented on code in PR #44580: URL: https://github.com/apache/airflow/pull/44580#discussion_r1866598106
########## airflow/dag_processing/bundles/base.py: ########## @@ -56,7 +56,7 @@ def _dag_bundle_root_storage_path(self) -> Path: This is the root path, shared by various bundles. Each bundle should have its own subdirectory. """ - if configured_location := conf.get("core", "dag_bundle_storage_path"): + if configured_location := conf.get("core", "dag_bundle_storage_path", fallback=None): Review Comment: It would work, but it feels "less right" to me. I think the right answer is to fix it so None is valid default, but that's a problem for another day I think. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org