jedcunningham commented on code in PR #46710:
URL: https://github.com/apache/airflow/pull/46710#discussion_r1954706670
##########
airflow/dag_processing/bundles/git.py:
##########
@@ -68,10 +68,10 @@ def get_ui_field_behaviour(cls) -> dict[str, Any]:
},
}
- def __init__(self, git_conn_id="git_default", *args, **kwargs):
+ def __init__(self, git_conn_id: str = "git_default", repo_url: str | None
= None, *args, **kwargs) -> None:
Review Comment:
We added it back intentionally:
https://github.com/apache/airflow/issues/45952
For cases where its either a public repo or if keys are already configured
on your system, you can operate without a connection.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]