| 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
|
|
|