jedcunningham commented on code in PR #46710:
URL: https://github.com/apache/airflow/pull/46710#discussion_r1954710264
##########
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:
It also provides flexibility where the connection can hold a shared
credential and the repo to use is set in the bundle itself.
--
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]