fix: trigger queue processing immediately after adding a new job
Release / release (pull_request) Successful in 1m16s

This commit is contained in:
2026-06-17 08:44:31 +01:00
parent 173c317238
commit ae869e7a2e
+1
View File
@@ -165,5 +165,6 @@ func (s *Server) handleRequeueJob(w http.ResponseWriter, r *http.Request) {
s.qm.NotifySSE("queue_updated", nil) s.qm.NotifySSE("queue_updated", nil)
s.qm.NotifySSE("job_added", nil) s.qm.NotifySSE("job_added", nil)
s.qm.Trigger()
w.WriteHeader(http.StatusOK) w.WriteHeader(http.StatusOK)
} }