From dc438b91deb00a8ad5634a9c55903e0b1a537c61 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 8 Nov 2019 13:40:46 +0100 Subject: dashboard/app: enable fix bisection to external reporting Update #1371 --- dashboard/app/jobs.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/dashboard/app/jobs.go b/dashboard/app/jobs.go index 42707fead..f474e7763 100644 --- a/dashboard/app/jobs.go +++ b/dashboard/app/jobs.go @@ -586,10 +586,6 @@ func pollCompletedJobs(c context.Context, typ string) ([]*dashapi.BugReport, err if reporting.Config.Type() != typ { continue } - // TODO: fix bisection results are only supported for email at the moment. - if !appengine.IsDevAppServer() && job.Type == JobBisectFix && typ != emailType { - continue - } // TODO: this is temporal for gradual bisection rollout. // Notify only about successful cause bisection for now. if !appengine.IsDevAppServer() && job.Type == JobBisectCause && len(job.Commits) != 1 { -- cgit mrf-deployment