diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2021-01-17 12:49:35 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2021-01-17 15:44:44 +0100 |
| commit | 62c73d7a9017a93eb7c4de9d8b004fc4226cce2e (patch) | |
| tree | 4d5ca81c08b749f683e417b73f97afa3476cba82 | |
| parent | 9ae4d4457c5b95a057827544d8410597bb1446bf (diff) | |
syz-manager: pass alternative crash titles to dashboard
Update #1575
| -rw-r--r-- | syz-manager/manager.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/syz-manager/manager.go b/syz-manager/manager.go index 47897d89b..f473eaf45 100644 --- a/syz-manager/manager.go +++ b/syz-manager/manager.go @@ -698,6 +698,7 @@ func (mgr *Manager) saveCrash(crash *Crash) bool { dc := &dashapi.Crash{ BuildID: mgr.cfg.Tag, Title: crash.Title, + AltTitles: crash.AltTitles, Corrupted: crash.Corrupted, Recipients: crash.Recipients.ToDash(), Log: crash.Output, @@ -868,6 +869,7 @@ func (mgr *Manager) saveRepro(res *repro.Result, stats *repro.Stats, hub bool) { dc := &dashapi.Crash{ BuildID: mgr.cfg.Tag, Title: res.Report.Title, + AltTitles: res.Report.AltTitles, Recipients: res.Report.Recipients.ToDash(), Log: res.Report.Output, Report: res.Report.Report, |
