diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2025-04-15 15:45:46 +0200 |
|---|---|---|
| committer | Aleksandr Nogikh <nogikh@google.com> | 2025-04-15 15:55:41 +0000 |
| commit | 1a6e1709f1d9fef11742f9686a1e1912ef2a12ea (patch) | |
| tree | f0c0e32ae4b0016519e1e85abf108f33053d2902 /syz-cluster/dashboard | |
| parent | 72b08b89bcde266d8ec4abc77b01fcc0cc95bea0 (diff) | |
syz-cluster: display the skipped status
If the series was skipped during triage, show that in the status and let
users filter by it.
Diffstat (limited to 'syz-cluster/dashboard')
| -rw-r--r-- | syz-cluster/dashboard/handler.go | 1 |
1 files changed, 1 insertions, 0 deletions
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"}, }, } |
