ephraimbuddy commented on code in PR #46710:
URL: https://github.com/apache/airflow/pull/46710#discussion_r1954020740
##########
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:
Do we need the repo_url on the hook or just take it from the connection
host? Should we remove the repo_url on the GitDagBundle 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]