aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dashboard/dashapi/dashapi.go1
-rw-r--r--syz-manager/manager.go2
2 files changed, 0 insertions, 3 deletions
diff --git a/dashboard/dashapi/dashapi.go b/dashboard/dashapi/dashapi.go
index a60b1eee6..a5d5e267f 100644
--- a/dashboard/dashapi/dashapi.go
+++ b/dashboard/dashapi/dashapi.go
@@ -49,7 +49,6 @@ func (dash *Dashboard) UploadBuild(build *Build) error {
// Crash describes a single kernel crash (potentially with repro).
type Crash struct {
- Manager string
BuildID string // refers to Build.ID
Title string
Maintainers []string
diff --git a/syz-manager/manager.go b/syz-manager/manager.go
index 25311a286..ab6d92192 100644
--- a/syz-manager/manager.go
+++ b/syz-manager/manager.go
@@ -529,7 +529,6 @@ func (mgr *Manager) saveCrash(crash *Crash) {
}
}
dc := &dashapi.Crash{
- Manager: mgr.cfg.Name,
BuildID: mgr.cfg.Tag,
Title: crash.desc,
Maintainers: maintainers,
@@ -665,7 +664,6 @@ func (mgr *Manager) saveRepro(res *repro.Result) {
}
}
dc := &dashapi.Crash{
- Manager: mgr.cfg.Name,
BuildID: mgr.cfg.Tag,
Title: res.Desc,
Maintainers: maintainers,