diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2019-11-08 13:40:46 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-11-08 13:40:46 +0100 |
| commit | dc438b91deb00a8ad5634a9c55903e0b1a537c61 (patch) | |
| tree | 6b669a9302bdab184dac05b080d7a335e65a0550 | |
| parent | 31b7aac4626757ae0862971db78aaa1338541227 (diff) | |
dashboard/app: enable fix bisection to external reporting
Update #1371
| -rw-r--r-- | dashboard/app/jobs.go | 4 |
1 files changed, 0 insertions, 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 { |
