Fork me on GitHub
#cider
<
2021-06-04
>
andrea.crotti10:06:16

recently every time I open a clojure buffer I have now the progress bar going back and forth continuosly

andrea.crotti10:06:41

anyone else having this isssue?

Elso13:06:07

cljr-find-usages is failing in a project because

java.util.concurrent.ExecutionException: clojure.lang.ExceptionInfo: Record construction syntax can only be used when *read-eval* == true
 {:type :reader-exception, :ex-kind :reader-error, :file ..., :line 97, :col 85}
	at java.base/java.util.concurrent.FutureTask.report(FutureTask.java:122)
	at java.base/java.util.concurrent.FutureTask.get(FutureTask.java:191)
	at clojure.core$deref_future.invokeStatic(core.clj:2300)
	at clojure.core$future_call$reify__8454.deref(core.clj:6974)
	at clojure.core$deref.invokeStatic(core.clj:2320)
	at clojure.core$deref.invoke(core.clj:2306)
	at refactor_nrepl.find.find_symbol$find_symbol.invokeStatic(find_symbol.clj:239)
	at refactor_nrepl.find.find_symbol$find_symbol.invoke(find_symbol.clj:230)
	at clojure.lang.Var.invoke(Var.java:384)
	at refactor_nrepl.middleware$find_symbol_reply.invokeStatic(middleware.clj:86)
	at refactor_nrepl.middleware$find_symbol_reply.invoke(middleware.clj:85)
	at refactor_nrepl.middleware$wrap_refactor$fn__53536.invoke(middleware.clj:196)
	at nrepl.middleware$wrap_conj_descriptor$fn__49828.invoke(middleware.clj:16)
	at cider.nrepl$wrap_info$fn__52439.invoke(nrepl.clj:204)
	at nrepl.middleware$wrap_conj_descriptor$fn__49828.invoke(middleware.clj:16)
	at cider.nrepl$wrap_apropos$fn__52389.invoke(nrepl.clj:125)
	at nrepl.middleware$wrap_conj_descriptor$fn__49828.invoke(middleware.clj:16)
	at cider.nrepl$wrap_test$fn__52521.invoke(nrepl.clj:438)
...
It points to a record which is created via a reader tag syntax #http://some.org.Record{:a :b} Not quite sure what to make of it. Weirdly,
user> *read-eval*
true
I guess the stack trace suggests there is a lot going on in different threads, is there a way to bind read-eval for those?