Fork me on GitHub
#tools-deps
<
2018-07-02
>
gfredericks00:07:32

the +6 can be made less hacky using some sort of fancier "read up until you encounter this magic string" approach

gfredericks00:07:37

startup is like 7sec though O_O I guess -Sdeps subverts caching?

Alex Miller (Clojure team)12:07:52

It used to but I think fixed in the current release

gfredericks15:07:27

I will try it

gfredericks15:07:32

yep, seems better

martinklepsch20:07:07

I’m running a script with clojure and have a println at the end. After that line is printed the script takes another 30+ seconds to exit. I’m probably just doing something weird but anyone an idea how to debug this?

manutter5120:07:48

I don’t know about debugging, but that looks like the kind of problem that is often solved by adding a call to shutdown-agents somewhere at the end.

martinklepsch20:07:26

@manutter51 that indeed resolved the issue, thanks!

👍 4