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

Unified Diff: download_firefox_nightly.py

Issue 2858023003: Temporarily raise the limit of failing Firefox downloads to 14 days. (Closed)
Patch Set: Created 3 years, 7 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: download_firefox_nightly.py
diff --git a/download_firefox_nightly.py b/download_firefox_nightly.py
index 6523eac66520a7c196e86738f772960d7306e796..71bfe8d8c4ef9e684e3ff637425fc1d875cdfde1 100755
--- a/download_firefox_nightly.py
+++ b/download_firefox_nightly.py
@@ -94,9 +94,9 @@ def _MaybeDownload(target_dir, force):
if not fallback_build:
raise Exception('We failed to download Firefox and we have no builds to '
'fall back on; failing...')
- if age_days > 7:
+ if age_days > 14:
raise Exception('We have failed to download firefox builds for more '
- 'than 7 days now: failing so someone looks at it. The '
+ 'than 14 days now: failing so someone looks at it. The '
'most recent build we have is %d days old.' % age_days)
print 'Using %s instead; it is %d days old.' % (fallback_build, age_days)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698