This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-10-02
Channels
- # beginners (98)
- # bigdata (1)
- # bitcoin (1)
- # boot (32)
- # cider (20)
- # cljs-dev (57)
- # cljsrn (130)
- # clojure (93)
- # clojure-dusseldorf (1)
- # clojure-germany (1)
- # clojure-greece (3)
- # clojure-italy (2)
- # clojure-russia (203)
- # clojure-spec (14)
- # clojure-uk (50)
- # clojurescript (127)
- # css (7)
- # cursive (6)
- # data-science (1)
- # datomic (4)
- # emacs (1)
- # events (1)
- # fulcro (8)
- # funcool (12)
- # graphql (7)
- # jobs (1)
- # lein-figwheel (2)
- # luminus (2)
- # off-topic (7)
- # om (16)
- # onyx (4)
- # parinfer (17)
- # pedestal (6)
- # portkey (36)
- # proton (3)
- # re-frame (10)
- # shadow-cljs (140)
- # spacemacs (12)
- # specter (1)
- # sql (1)
- # vim (10)
- # yada (10)
Yea emacs is saying it's unable to connect cider
same issue here with-safe-transport does not exist
with CIDER 0.16.0snapshot (package: 20171001.112), nREPL 0.2.12
Same with-safe-transport problem. Reverting back to [cider/cider-nrepl “0.16.0-20170916.095133-1”] worked, thank **d.
twillis: No, you need to revert to an earlier version of of Emacs Cider. I used a backup.
so has anyone reported this as a bug yet? i didnt immediately see it in github anywhere, though i'm still not clear which repo it should be reported in.
I just reported it the best I could here. https://github.com/clojure-emacs/cider/issues/2092
(defun cider--connected-handler ()
(let ((cider-enlighten-mode nil))
(cider-make-connection-default (current-buffer))
(cider-repl-init (current-buffer))
(cider--check-required-nrepl-version)
(cider--check-clojure-version-supported)
(cider--check-middleware-compatibility)
(cider--subscribe-repl-to-server-out)
(when cider-auto-mode
(cider-enable-on-existing-clojure-buffers))
(sleep-for 0.1) ;; <-- Increase timeout till it works
(cider--debug-init-connection)
(run-hooks 'cider-connected-hook)))
fixes the issue, and is according to https://github.com/clojure-emacs/cider/issues/2092 the thing that's going out as an intermediate fix.
Stick that (sleep-for 0.1)
in cider.el
?
Or just comment that and (cider-debug-init)
?