Skip to content

Commit 1f0e6c3

Browse files
yuhan0bbatsov
authored andcommitted
Ignore errors when filtering for dead REPLs
1 parent 69d6bcb commit 1f0e6c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cider-connection.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -853,7 +853,7 @@ PARAMS is a plist as received by `cider-repl-create'."
853853
(type (plist-get params :repl-type))
854854
(scored-repls
855855
(mapcar (lambda (b)
856-
(let ((bparams (cider--gather-connect-params nil b)))
856+
(let ((bparams (ignore-errors (cider--gather-connect-params nil b))))
857857
(when (eq type (plist-get bparams :repl-type))
858858
(cons b (+
859859
(if (equal proj-dir (plist-get bparams :project-dir)) 8 0)

0 commit comments

Comments
 (0)