aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/dashapi/dashapi.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2021-02-20 08:31:29 +0100
committerDmitry Vyukov <dvyukov@google.com>2021-02-20 09:46:56 +0100
commit2cf3150e81a23334b93e80b036968c7fd583ef69 (patch)
tree79568200da8070d549bba207a3c4c824a6043222 /dashboard/dashapi/dashapi.go
parent053a2b260f233c01a66e878fd42ca6d99851bded (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.go7
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 {