From 2cf3150e81a23334b93e80b036968c7fd583ef69 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sat, 20 Feb 2021 08:31:29 +0100 Subject: syz-manager: don't reproduce leaks again and again Fixes #1956 --- dashboard/dashapi/dashapi.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'dashboard/dashapi/dashapi.go') 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 { -- cgit mrf-deployment