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

Unified Diff: milo/appengine/buildbot/builder.go

Issue 2772623002: Milo: Don't float step times if build has finished (Closed)
Patch Set: Compile fix Created 3 years, 9 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 | « milo/appengine/buildbot/build.go ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: milo/appengine/buildbot/builder.go
diff --git a/milo/appengine/buildbot/builder.go b/milo/appengine/buildbot/builder.go
index 6a9cd265fdad82c6a6a0727b1d372fb67d607434..8bb9be08e902d1099f4d44a3509e81e135302115 100644
--- a/milo/appengine/buildbot/builder.go
+++ b/milo/appengine/buildbot/builder.go
@@ -64,7 +64,7 @@ func mergeText(text []string) []string {
}
func getBuildSummary(b *buildbotBuild) *resp.BuildSummary {
- started, finished, duration := parseTimes(b.Times)
+ started, finished, duration := parseTimes(nil, b.Times)
return &resp.BuildSummary{
Link: &resp.Link{
URL: fmt.Sprintf("%d", b.Number),
« no previous file with comments | « milo/appengine/buildbot/build.go ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698