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

Unified Diff: milo/buildsource/swarming/buildinfo.go

Issue 2964143002: Buildbucket: Save buildbucket build info and summary on pubsub push (Closed)
Patch Set: nits 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/swarming/build_test.go ('k') | milo/buildsource/swarming/buildinfo_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: milo/buildsource/swarming/buildinfo.go
diff --git a/milo/buildsource/swarming/buildinfo.go b/milo/buildsource/swarming/buildinfo.go
index 795c1bbc4eabe933fffda2c9d0544e60c9973804..47d63dc7bee369a0b7ab7e652ed1f07746d0846d 100644
--- a/milo/buildsource/swarming/buildinfo.go
+++ b/milo/buildsource/swarming/buildinfo.go
@@ -27,7 +27,7 @@ import (
// In a production system, this will be completely defaults. For testing, the
// various services and data sources may be substituted for testing stubs.
type BuildInfoProvider struct {
- bl buildLoader
+ bl BuildLoader
// swarmingServiceFunc returns a swarmingService instance for the supplied
// parameters.
@@ -38,7 +38,7 @@ type BuildInfoProvider struct {
func (p *BuildInfoProvider) newSwarmingService(c context.Context, host string) (swarmingService, error) {
if p.swarmingServiceFunc == nil {
- return newProdService(c, host)
+ return NewProdService(c, host)
}
return p.swarmingServiceFunc(c, host)
}
« no previous file with comments | « milo/buildsource/swarming/build_test.go ('k') | milo/buildsource/swarming/buildinfo_test.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698