From d5bc68123a4b737317e16c6ace063dea9699e79b Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 7 Nov 2019 14:45:13 +0100 Subject: dashboard/app: enable mailing results of fix bisection All prerequisites are done now. I've cleaned the datastore and did some manual testing as well. Fixes #1371 --- dashboard/app/jobs.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/dashboard/app/jobs.go b/dashboard/app/jobs.go index 7b9fbf22b..1e2f158c7 100644 --- a/dashboard/app/jobs.go +++ b/dashboard/app/jobs.go @@ -585,10 +585,6 @@ func pollCompletedJobs(c context.Context, typ string) ([]*dashapi.BugReport, err if reporting.Config.Type() != typ { continue } - // TODO: reporting fix bisection is disabled until issue #1371 is resolved. - if !appengine.IsDevAppServer() && job.Type == JobBisectFix { - continue - } // TODO: fix bisection results are only supported for email at the moment. if !appengine.IsDevAppServer() && job.Type == JobBisectFix && typ != emailType { continue -- cgit mrf-deployment