@psdp did you put the ::pc/key-process-timeout
at (p/parallel-parser {::pc/key-process-timeout ...})
or at env (parser (assoc env ::pc/key-process-timeout ...) ....)
?
@souenzzo Thanks for the hint! Problem solved now I put it at env. And I set a wrong namespaced keyword, it should be ::pp
instead of ::pc
I'm trying to do a next.jdbc.sql/insert!
in a pathom-connect/defmutation
. It appears that it's not running the insert, and I'm not seeing any exceptions. Does this have something to do with the fact that I'm using http-kit which is asynchronous, and next.jdbc is synchronous?
@ballpark try to call the opertion on your REPL
something like (parser env '[(app/insert-in-db {:a 42})])