From 0d1223f1dc0faefcf010d6ee3e5a1e9571a1ad1a Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Thu, 17 Jul 2025 12:30:43 +0200 Subject: syz-cluster: keep only one Cc list in SessionReport Currently, the list was both within the Series object and within the SessionReport object that also encloses Series. And, since only was was actually filled, we were unable to actually Cc the people from the series. Keep only the Cc list in the Series object and adjust the tests. --- syz-cluster/pkg/api/api.go | 1 - 1 file changed, 1 deletion(-) (limited to 'syz-cluster/pkg/api/api.go') diff --git a/syz-cluster/pkg/api/api.go b/syz-cluster/pkg/api/api.go index 95cf73ae5..128be02ba 100644 --- a/syz-cluster/pkg/api/api.go +++ b/syz-cluster/pkg/api/api.go @@ -129,7 +129,6 @@ type NewSession struct { type SessionReport struct { ID string `json:"id"` - Cc []string `json:"cc"` Moderation bool `json:"moderation"` Series *Series `json:"series"` Findings []*Finding `json:"findings"` -- cgit mrf-deployment