diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2022-12-13 12:25:52 +0100 |
|---|---|---|
| committer | Aleksandr Nogikh <wp32pw@gmail.com> | 2022-12-13 17:02:33 +0100 |
| commit | f6511626584e1f100818d9036909e0480ffd34c1 (patch) | |
| tree | b6c603e11403b1829389a838da6bc919997242b4 /dashboard/dashapi/dashapi.go | |
| parent | e660de910a08eb32c8551c48b39317fff1136c1b (diff) | |
dashboard: return bisection info as BugReport object
Bisection jobs can refer to other crashes/builds, so for the full bug
info we need complete BugReport objects.
Diffstat (limited to 'dashboard/dashapi/dashapi.go')
| -rw-r--r-- | dashboard/dashapi/dashapi.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dashboard/dashapi/dashapi.go b/dashboard/dashapi/dashapi.go index 0c2db1ac7..c90243cb7 100644 --- a/dashboard/dashapi/dashapi.go +++ b/dashboard/dashapi/dashapi.go @@ -644,8 +644,8 @@ type LoadFullBugReq struct { type FullBugInfo struct { SimilarBugs []*SimilarBugInfo - BisectCause *BisectResult - BisectFix *BisectResult + BisectCause *BugReport + BisectFix *BugReport Crashes []*BugReport } |
