ashb commented on a change in pull request #15110:
URL: https://github.com/apache/airflow/pull/15110#discussion_r604912680
##########
File path: airflow/models/dagbag.py
##########
@@ -450,7 +453,8 @@ def collect_dags(
# Used to store stats around DagBag processing
stats = []
- dag_folder = correct_maybe_zipped(dag_folder)
+ # Ensure dag_folder is a str -- it may have been a pathlib.Path
+ dag_folder = correct_maybe_zipped(str(dag_folder))
Review comment:
We could -- I wasn't sure how deep to chase this is all.
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]