Fork me on GitHub
#spacemacs
<
2017-10-31
>
zane14:10:16

For some reason cider-connect is now auto-filling the wrong port for a server I started with lein repl :headless. Has anyone experienced that kind of bug before / know of a fix?

eggsyntax15:10:59

@zane Oooh, a long time ago, don't remember much about it now. The 1st thing I'd do is verify that there are no other lein processes running -- I've tripped over leftover processes before. And maybe a lein clean because it never hurts 😜

chris16:10:23

@zane: check ~/.lein/nrepl-port

chris16:10:59

as @eggsyntax said, you could have other processes running. If you're sure you don't you can try removing the nrepl-port file and restarting your repl

reefersleep18:10:31

Is there a way to avoid the recent javax.xml.bind exception when starting up a cider repl? https://dev.clojure.org/jira/browse/CLJS-2377

reefersleep18:10:54

I see that there are some args that you can add in the repl command line, but I don’t know about Cider/Spacemacs

reefersleep21:10:44

Managed to find a solution in #cider , btw. :jvm-opts [“--add-modules=java.xml.bind”] in my project.clj solved the issue 🙂