| Index: milo/buildsource/buildbot/pubsub.go
|
| diff --git a/milo/buildsource/buildbot/pubsub.go b/milo/buildsource/buildbot/pubsub.go
|
| index 714e43b217ff921ece33e3d8c108d59e89084cab..b82e3f812695584df40ec41c1e611291dfbf9250 100644
|
| --- a/milo/buildsource/buildbot/pubsub.go
|
| +++ b/milo/buildsource/buildbot/pubsub.go
|
| @@ -233,7 +233,9 @@ func saveBuildSummary(c context.Context, b *buildbotBuild) error {
|
| BuildKey: datastore.KeyForObj(c, b),
|
| BuilderID: fmt.Sprintf("buildbot/%s/%s", b.Master, b.Buildername),
|
| }
|
| - resp.SummarizeTo(&bs)
|
| + if err := resp.SummarizeTo(c, &bs); err != nil {
|
| + return err
|
| + }
|
| return datastore.Put(c, &bs)
|
| }
|
|
|
|
|