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

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

Issue 2275123002: Milo: pRPC endpoint for getting Buildbot master data (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-go@master
Patch Set: Update config tests 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
Index: milo/appengine/buildbot/build.go
diff --git a/milo/appengine/buildbot/build.go b/milo/appengine/buildbot/build.go
index 46e5dfbfe0b3890d0f1462b4469502f9a8506856..9fa2dc1ebc70e3834c16469a9dccbbeef41eb83f 100644
--- a/milo/appengine/buildbot/build.go
+++ b/milo/appengine/buildbot/build.go
@@ -122,7 +122,7 @@ func getBanner(c context.Context, b *buildbotBuild, m *buildbotMaster) *resp.Log
logos := &resp.LogoBanner{}
// Fetch the master info from datastore if not provided.
if m == nil {
- m1, _, _, err := getMasterJSON(c, b.Master)
+ m1, _, err := getMasterJSON(c, b.Master)
m = m1
if err != nil {
logging.Warningf(c, "Failed to fetch master information for banners on master %s", b.Master)

Powered by Google App Engine
This is Rietveld 408576698