Refactor: Lower run ended ntfy alert priority to 2

This commit is contained in:
2026-04-02 17:12:02 -07:00
parent 59ae2b2493
commit 76efbc6334

2
run.js
View File

@@ -118,7 +118,7 @@ function stop(r) {
try { r.controller?.abort() } catch {} try { r.controller?.abort() } catch {}
saveSnapshot(r) saveSnapshot(r)
bcast(r, { type: 'done' }) bcast(r, { type: 'done' })
notify(`Run ${r.rid} ended. Duration: ${duration}s`, 3, ['stop_sign']) notify(`Run ${r.rid} ended. Duration: ${duration}s`, 2, ['stop_sign'])
} }
function fail(r, message) { function fail(r, message) {