diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2021-02-20 08:31:29 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2021-02-20 09:46:56 +0100 |
| commit | 2cf3150e81a23334b93e80b036968c7fd583ef69 (patch) | |
| tree | 79568200da8070d549bba207a3c4c824a6043222 /dashboard/dashapi/dashapi.go | |
| parent | 053a2b260f233c01a66e878fd42ca6d99851bded (diff) | |
syz-manager: don't reproduce leaks again and again
Fixes #1956
Diffstat (limited to 'dashboard/dashapi/dashapi.go')
| -rw-r--r-- | dashboard/dashapi/dashapi.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/dashboard/dashapi/dashapi.go b/dashboard/dashapi/dashapi.go index de6726c0a..c62d53c3e 100644 --- a/dashboard/dashapi/dashapi.go +++ b/dashboard/dashapi/dashapi.go @@ -261,9 +261,10 @@ func (dash *Dashboard) ReportCrash(crash *Crash) (*ReportCrashResp, error) { // CrashID is a short summary of a crash for repro queries. type CrashID struct { - BuildID string - Title string - Corrupted bool + BuildID string + Title string + Corrupted bool + MayBeMissing bool } type NeedReproResp struct { |
