This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-10-31
Channels
- # aws-lambda (4)
- # beginners (152)
- # boot (19)
- # cider (45)
- # cljs-dev (14)
- # clojure (54)
- # clojure-dev (33)
- # clojure-greece (11)
- # clojure-italy (4)
- # clojure-nl (8)
- # clojure-norway (2)
- # clojure-russia (6)
- # clojure-sg (1)
- # clojure-spec (1)
- # clojure-uk (40)
- # clojure-ukraine (5)
- # clojurescript (40)
- # community-development (13)
- # component (8)
- # core-async (3)
- # cursive (25)
- # data-science (11)
- # datomic (13)
- # duct (1)
- # emacs (2)
- # events (16)
- # figwheel (3)
- # fulcro (53)
- # graphql (2)
- # jobs (5)
- # jobs-rus (1)
- # juxt (10)
- # leiningen (4)
- # off-topic (82)
- # other-languages (5)
- # portkey (3)
- # protorepl (13)
- # re-frame (22)
- # reagent (15)
- # ring-swagger (4)
- # shadow-cljs (69)
- # spacemacs (7)
- # specter (16)
- # sql (13)
- # vim (5)
- # yada (2)
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?
@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 đ
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
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
I see that there are some args that you can add in the repl command line, but I donât know about Cider/Spacemacs
Managed to find a solution in #cider , btw. :jvm-opts [â--add-modules=java.xml.bindâ]
in my project.clj
solved the issue đ