From 8c7cd9275d42c9dd3cf5d93c1a9fb01b99f88db8 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 22 Nov 2017 10:14:48 +0100 Subject: dashboard/app: support corrupted reports --- dashboard/dashapi/dashapi.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'dashboard/dashapi/dashapi.go') diff --git a/dashboard/dashapi/dashapi.go b/dashboard/dashapi/dashapi.go index 10c6a9b60..50c144dae 100644 --- a/dashboard/dashapi/dashapi.go +++ b/dashboard/dashapi/dashapi.go @@ -147,8 +147,9 @@ func (dash *Dashboard) ReportCrash(crash *Crash) (*ReportCrashResp, error) { // CrashID is a short summary of a crash for repro queires. type CrashID struct { - BuildID string - Title string + BuildID string + Title string + Corrupted bool } type NeedReproResp struct { -- cgit mrf-deployment