Merge "repo_pull: Attempt to fetch via ssh first" am: 4a2aacdeed

Original change: https://android-review.googlesource.com/c/platform/development/+/2128416

Change-Id: I258f742d4f9cbc209488e343378c74fbb7555fd9
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Treehugger Robot
2022-07-18 10:07:40 +00:00
committed by Automerger Merge Worker

View File

@@ -94,7 +94,7 @@ class ChangeList(object):
self.fetch = fetch
fetch_git = None
for protocol in ('http', 'sso', 'rpc'):
for protocol in ('http', 'sso', 'rpc', 'ssh'):
fetch_git = fetch.get(protocol)
if fetch_git:
break