Send version and build data to worker configuration

This commit is contained in:
Andrey Antukh 2025-04-04 14:22:58 +02:00
parent 5cb39874a2
commit 6b3a988526
3 changed files with 20 additions and 10 deletions

View file

@ -135,15 +135,15 @@
(rx/debounce 1)
(rx/subs! (fn [[messages dropped last]]
;; Send back the dropped messages replies
;; Send back the dropped messages replies
(doseq [msg dropped]
(drop-message msg))
;; Process the message
;; Process the message
(doseq [msg (vals messages)]
(handle-message msg))
;; After process the buffer we send a clear
;; After process the buffer we send a clear
(when-not (= last ::clear)
(rx/push! buffer ::clear)))))))