lein check can hang forever in presence of (relatively) well-behaved Clojure code:
(defonce runner
(future
(while (not (-> (Thread/currentThread) .isInterrupted))
,,,
(Thread/sleep 50))))
Accordingly I believe check.clj should invoke (shutdown-agents) by the end of its execution.
WDYT?
Thanks - V
lein checkcan hang forever in presence of (relatively) well-behaved Clojure code:Accordingly I believe
check.cljshould invoke(shutdown-agents)by the end of its execution.WDYT?
Thanks - V