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

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

Issue 2116073002: [Findit] Fix redirect bug and update template for waterfall/culprit. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Add one unittest. Created 4 years, 5 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/templates/waterfall/culprit.html ('k') | appengine/findit/waterfall/build_util.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/waterfall/build_info.py
diff --git a/appengine/findit/waterfall/build_info.py b/appengine/findit/waterfall/build_info.py
index dc95b7535d93284a4fb4376551322356d8c24f80..ece49255d45bbc6e6084023703e53c5f6cf81a98 100644
--- a/appengine/findit/waterfall/build_info.py
+++ b/appengine/findit/waterfall/build_info.py
@@ -10,6 +10,7 @@ class BuildInfo(object): # pragma: no cover
self.builder_name = builder_name
self.build_number = build_number
self.build_start_time = None
+ self.build_end_time = None
self.chromium_revision = None
self.completed = False
self.result = None
@@ -23,6 +24,7 @@ class BuildInfo(object): # pragma: no cover
print 'builder: %s' % self.builder_name
print 'build: %s' % self.build_number
print 'start time: %s' % self.build_start_time
+ print 'end time: %s' % self.build_end_time
print 'chromium revision: %s' % self.chromium_revision
print 'completed: %s' % self.completed
print 'result: %s' % self.result
« no previous file with comments | « appengine/findit/templates/waterfall/culprit.html ('k') | appengine/findit/waterfall/build_util.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698