Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Unified Diff: recipe_modules/bot_update/resources/bot_update.py

Issue 2273043002: bot_update: deploy git fetch timeout. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@kill-fetch
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« gclient.py ('K') | « gclient_scm.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipe_modules/bot_update/resources/bot_update.py
diff --git a/recipe_modules/bot_update/resources/bot_update.py b/recipe_modules/bot_update/resources/bot_update.py
index 303422316fc84b2ed0bf279dbefc34060ccedc5f..e6a2a8b63f068e031961cbee68f37f9673fa43da 100755
--- a/recipe_modules/bot_update/resources/bot_update.py
+++ b/recipe_modules/bot_update/resources/bot_update.py
@@ -710,7 +710,8 @@ def gclient_sync(with_branch_heads, shallow):
gclient_bin = 'gclient.bat' if sys.platform.startswith('win') else 'gclient'
cmd = [gclient_bin, 'sync', '--verbose', '--reset', '--force',
'--ignore_locks', '--output-json', gclient_output_file,
- '--nohooks', '--noprehooks', '--delete_unversioned_trees']
+ '--nohooks', '--noprehooks', '--delete_unversioned_trees',
+ '--fetch_timeout=1200']
if with_branch_heads:
cmd += ['--with_branch_heads']
if shallow:
« gclient.py ('K') | « gclient_scm.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698