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

Unified Diff: tools/findit/chromium_deps.py

Issue 551433003: [Findit] Fix network timeout. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « no previous file | tools/findit/common/http_client.py » ('j') | tools/findit/findit_for_clusterfuzz.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/findit/chromium_deps.py
diff --git a/tools/findit/chromium_deps.py b/tools/findit/chromium_deps.py
index cf8aa26b48132f5abbd49dcf3a731692b85fe915..46436cbc7e008dae02351bbfb35cfa5cf2fdff01 100644
--- a/tools/findit/chromium_deps.py
+++ b/tools/findit/chromium_deps.py
@@ -117,7 +117,7 @@ def GetChromiumComponents(chromium_revision,
cr_rev_url_template = CONFIG['cr_rev_url']
url = cr_rev_url_template % chromium_revision
status_code, content = utils.GetHttpClient().Get(
- url, timeout=60, retries=5, retry_if_not=404)
+ url, timeout=120, retries=5, retry_if_not=404)
if status_code != 200 or not content:
if status_code == 404:
print 'Chromium commit position %s is not found.' % chromium_revision
« no previous file with comments | « no previous file | tools/findit/common/http_client.py » ('j') | tools/findit/findit_for_clusterfuzz.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698