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

Unified Diff: appengine/findit/waterfall/monitor_try_job_pipeline.py

Issue 1667383002: [Findit] Adding master_name, builder_name, and try_job_type to try_job_data (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Addressing comments and rebase Created 4 years, 10 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_try_job_data.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/waterfall/monitor_try_job_pipeline.py
diff --git a/appengine/findit/waterfall/monitor_try_job_pipeline.py b/appengine/findit/waterfall/monitor_try_job_pipeline.py
index 419b6615b7b976cea50f8b75a8a18a0a1f4a8a3b..0dc14970feb833dc3c3b7557a90f1cc51dad0437 100644
--- a/appengine/findit/waterfall/monitor_try_job_pipeline.py
+++ b/appengine/findit/waterfall/monitor_try_job_pipeline.py
@@ -99,6 +99,9 @@ class MonitorTryJobPipeline(BasePipeline):
deadline = time.time() + timeout_hours * 60 * 60
try_job_data = (WfTryJobData.Get(try_job_id) or
WfTryJobData.Create(try_job_id))
+ try_job_data.master_name = master_name
+ try_job_data.builder_name = builder_name
+ try_job_data.try_job_type = try_job_type
already_set_started = False
start_time = None
« no previous file with comments | « appengine/findit/model/wf_try_job_data.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698