From ee70e6dbc377b7957fe85c173da580f033ee93a3 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Tue, 11 Mar 2025 21:38:10 +0100 Subject: syz-cluster: display and filter by Cc list For each series, display the Cc'd email list and let users filter the patch series list by those addresses. --- syz-cluster/controller/processor_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'syz-cluster/controller/processor_test.go') diff --git a/syz-cluster/controller/processor_test.go b/syz-cluster/controller/processor_test.go index ff85ebec9..00f2c471b 100644 --- a/syz-cluster/controller/processor_test.go +++ b/syz-cluster/controller/processor_test.go @@ -85,7 +85,7 @@ func awaitFinishedSessions(t *testing.T, seriesRepo *db.SeriesRepository, wantFi for i := 0; i < int(deadline/interval); i++ { time.Sleep(interval) - list, err := seriesRepo.ListLatest(context.Background(), time.Time{}, 0) + list, err := seriesRepo.ListLatest(context.Background(), db.SeriesFilter{}, time.Time{}, 0) assert.NoError(t, err) withFinishedSeries := 0 for _, item := range list { -- cgit mrf-deployment