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

Unified Diff: milo/appengine/swarming/html.go

Issue 2257643002: Milo-Swarmbucket: Add indication for incomplete logs (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-go@master
Patch Set: Created 4 years, 4 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/swarming/buildLog.go ('k') | milo/appengine/swarming/html_data.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: milo/appengine/swarming/html.go
diff --git a/milo/appengine/swarming/html.go b/milo/appengine/swarming/html.go
index 0ecb2d405b4582252015d3325e800b60ed2d1ef5..b612723b60c6a9927f70a632e6b18ad930c5720e 100644
--- a/milo/appengine/swarming/html.go
+++ b/milo/appengine/swarming/html.go
@@ -59,13 +59,14 @@ func (l Log) Render(c context.Context, r *http.Request, p httprouter.Params) (*t
}
}
- log, err := swarmingBuildLogImpl(c, getServer(r), id, logname)
+ log, closed, err := swarmingBuildLogImpl(c, getServer(r), id, logname)
if err != nil {
return nil, convertErr(err)
}
args := &templates.Args{
- "Log": log,
+ "Log": log,
+ "Closed": closed,
}
return args, nil
}
« no previous file with comments | « milo/appengine/swarming/buildLog.go ('k') | milo/appengine/swarming/html_data.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698