jedcunningham commented on code in PR #45982:
URL: https://github.com/apache/airflow/pull/45982#discussion_r1928894536


##########
airflow/dag_processing/bundles/git.py:
##########
@@ -213,10 +219,10 @@ def refresh(self) -> None:
         self._fetch_bare_repo()
         self.repo.remotes.origin.pull()
 
-    def _convert_git_ssh_url_to_https(self) -> str:
-        if not self.repo_url.startswith("git@"):
-            raise ValueError(f"Invalid git SSH URL: {self.repo_url}")
-        parts = self.repo_url.split(":")
+    def _convert_git_ssh_url_to_https(self, url) -> str:

Review Comment:
   ```suggestion
       @staticmethod
       def _convert_git_ssh_url_to_https(url: str) -> str:
   ```



-- 
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]

Reply via email to