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

Unified Diff: milo/buildsource/buildbucket/pubsub.go

Issue 2979283002: Add manifest links and hack to index on revision. (Closed)
Patch Set: actually upload Created 3 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 | « milo/buildsource/buildbot/pubsub.go ('k') | milo/common/config.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: milo/buildsource/buildbucket/pubsub.go
diff --git a/milo/buildsource/buildbucket/pubsub.go b/milo/buildsource/buildbucket/pubsub.go
index 077be7dbcaf9d5a1df175d138373e1781d401cd2..6b8c41a7fc2c73f4d845b516f6a45b80eed768bb 100644
--- a/milo/buildsource/buildbucket/pubsub.go
+++ b/milo/buildsource/buildbucket/pubsub.go
@@ -164,7 +164,9 @@ func saveBuildSummary(
}
if entry.respBuild != nil {
// Add info from the respBuild into the build summary if we have the data.
- entry.respBuild.SummarizeTo(&bs)
+ if err := entry.respBuild.SummarizeTo(c, &bs); err != nil {
+ return err
+ }
}
logging.Debugf(c, "Created build summary: %#v", bs)
// Make datastore flakes transient errors
« no previous file with comments | « milo/buildsource/buildbot/pubsub.go ('k') | milo/common/config.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698