aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2017-07-25 20:23:37 +0200
committerDmitry Vyukov <dvyukov@google.com>2017-07-25 20:23:37 +0200
commitdf92da0d0e5b0d44eda9ae096b9ccffd4158f0ae (patch)
tree2578e0b2e0409fd21dc48107cdd158b19cb53210
parent68c70116f3e617195a4f2cea41b00255d085a9f2 (diff)
dashboard/dashapi: don't send manager name in crashes
We already have manager name in Build and Crash references Build.
-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,