From 1a6e1709f1d9fef11742f9686a1e1912ef2a12ea Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Tue, 15 Apr 2025 15:45:46 +0200 Subject: syz-cluster: display the skipped status If the series was skipped during triage, show that in the status and let users filter by it. --- syz-cluster/dashboard/handler.go | 1 + 1 file changed, 1 insertion(+) (limited to 'syz-cluster/dashboard') diff --git a/syz-cluster/dashboard/handler.go b/syz-cluster/dashboard/handler.go index c17921351..8799b1550 100644 --- a/syz-cluster/dashboard/handler.go +++ b/syz-cluster/dashboard/handler.go @@ -115,6 +115,7 @@ func (h *dashboardHandler) seriesList(w http.ResponseWriter, r *http.Request) er {db.SessionStatusWaiting, "waiting"}, {db.SessionStatusInProgress, "in progress"}, {db.SessionStatusFinished, "finished"}, + {db.SessionStatusSkipped, "skipped"}, }, } -- cgit mrf-deployment