0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-13 16:21:57 -05:00

🐛 Fix wring metrics usage on websocket module.

This commit is contained in:
Andrey Antukh 2021-12-29 12:55:41 +01:00
parent 9ea90c3400
commit 2bd94aff0e

View file

@ -96,7 +96,7 @@
;; connection
(a/go-loop []
(when-let [val (a/<! output-ch)]
(call-mtx metrics :messages ["send"])
(call-mtx metrics :messages {:labels ["send"]})
(a/<! (ws-send! conn (t/encode-str val)))
(recur)))