We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed5377d commit 7924a05Copy full SHA for 7924a05
src/simulflow/processors/activity_monitor.clj
@@ -100,10 +100,9 @@
100
timer-out-ch (a/chan 1024)]
101
(vthread-loop []
102
(let [timeout-ch (a/timeout timeout-ms)
103
- [v c] (a/alts!! [timer-in-ch timeout-ch])]
+ [_v c] (a/alts!! [timer-in-ch timeout-ch])]
104
(when (= c timeout-ch)
105
(t/log! {:msg "Activity timeout activated!"
106
- :data {:timeout-ms timeout-ms :c c :v v}
107
:id :activity-monitor
108
:level :debug})
109
(a/>!! timer-out-ch {::timeout? true}))
0 commit comments