boot

:boot-clj: https://boot-clj.github.io/ — build tooling for Clojure. Dev chat in #boot-dev
2019-05-21T10:49:54.156100Z

Ok found a method to replicate the missing stacktrace:

boot.user=> (let [x (fn [] (/ nil 1)) cnt0 20000] (loop [cnt 0] (when-not (= cnt cnt0) (recur (try (x) (catch Exception e (print ".") (flush) (if (seq (.getStackTrace e)) (inc cnt) (do (println "No stacktrace at" cnt) cnt0))))))))
............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................No stacktrace at 699
Will try to fix it now

2019-05-21T12:59:46.156400Z

@flyboarder Think I fixed it https://github.com/boot-clj/bootstrap/pull/4

2019-05-21T13:40:41.157100Z

Tests are failing apparently. Should I create a docker cloud account to see the info?