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

Unified Diff: appengine/findit/model/wf_config.py

Issue 1999653003: [Findit] Bailing out if build data is too old and moving relevant settings to config (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Addressing comments Created 4 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 | « appengine/findit/model/wf_build.py ('k') | appengine/findit/templates/config.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/model/wf_config.py
diff --git a/appengine/findit/model/wf_config.py b/appengine/findit/model/wf_config.py
index 23e8039f8ed02f26c0e34279b0dc2af290259756..b7ff92ed7d47cf051868440b48ee38d4d1d033a0 100644
--- a/appengine/findit/model/wf_config.py
+++ b/appengine/findit/model/wf_config.py
@@ -71,3 +71,12 @@ class FinditConfig(VersionedConfig):
# 'iterations_to_rerun': 10
# }
swarming_settings = ndb.JsonProperty(indexed=False, default={})
+
+ # A dict containing build data download settings. For example,
+ # {
+ # 'download_interval_seconds': 10,
+ # 'memcache_download_expiration_seconds': 3600,
+ # 'use_chrome_build_extract': True
+ # }
+ download_build_data_settings = ndb.JsonProperty(indexed=False, default={})
+
« no previous file with comments | « appengine/findit/model/wf_build.py ('k') | appengine/findit/templates/config.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698