From 951ea18d6acd9ba5a292f68bc9be77dddc4c8845 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 26 Feb 2018 10:31:53 +0100 Subject: dashboard/app: remove redundant field update NumCrashesBad is set in updateBugBadness. --- dashboard/app/main.go | 1 - 1 file changed, 1 deletion(-) (limited to 'dashboard') diff --git a/dashboard/app/main.go b/dashboard/app/main.go index 7962b660e..d13006a54 100644 --- a/dashboard/app/main.go +++ b/dashboard/app/main.go @@ -500,7 +500,6 @@ func createUIBug(c context.Context, bug *Bug, state *ReportingState, managers [] Namespace: bug.Namespace, Title: bug.displayTitle(), NumCrashes: bug.NumCrashes, - NumCrashesBad: bug.NumCrashes >= 10000 && timeNow(c).Sub(bug.LastTime) < 24*time.Hour, FirstTime: bug.FirstTime, LastTime: bug.LastTime, ReportedTime: reported, -- cgit mrf-deployment