From 7df4f03f0bca2ce51d72b78e2cfe3823733810aa Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Tue, 28 Mar 2023 11:51:46 +0200 Subject: pkg/subsystem: take only always present calls from repros We're not yet perfect at eliminating unneeded calls from reproducers, so let's make the subsystem extraction rules stricter: only take a subsystem from the reproducer if it's present in all reproducers. Consider more crashes (7 instead of 5) to give more opportunities to drop an unneeded call. --- dashboard/app/subsystem.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dashboard') diff --git a/dashboard/app/subsystem.go b/dashboard/app/subsystem.go index 0b4300060..34cbd0547 100644 --- a/dashboard/app/subsystem.go +++ b/dashboard/app/subsystem.go @@ -128,7 +128,7 @@ func updateBugSubsystems(c context.Context, bugKey *db.Key, const ( // We load the top crashesForInference crashes to determine the bug subsystem(s). - crashesForInference = 5 + crashesForInference = 7 // How often we update open bugs. openBugsUpdateTime = time.Hour * 24 * 30 ) -- cgit mrf-deployment