diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2023-03-28 11:51:46 +0200 |
|---|---|---|
| committer | Aleksandr Nogikh <wp32pw@gmail.com> | 2023-03-28 13:53:08 +0200 |
| commit | 7df4f03f0bca2ce51d72b78e2cfe3823733810aa (patch) | |
| tree | c7c31300f67445f37ed1486c5e5db7bd29a93e42 /dashboard | |
| parent | 47f3aaf18b57644f3c07714c9ce073a210f061b4 (diff) | |
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.
Diffstat (limited to 'dashboard')
| -rw-r--r-- | dashboard/app/subsystem.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 ) |
