RaphCodec commented on code in PR #64422:
URL: https://github.com/apache/airflow/pull/64422#discussion_r3741106663
##########
providers/git/src/airflow/providers/git/hooks/git.py:
##########
@@ -183,7 +216,80 @@ def _build_ssh_command(self, key_path: str | None = None)
-> str:
return " ".join(parts)
- def _process_git_auth_url(self):
+ def _get_github_app_token(self):
+ try:
+ from github import Auth, GithubIntegration
+ except ImportError as exc:
+ raise ImportError(
Review Comment:
suggestion applied.
--
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]