SuperCuber

Results 23 issues of SuperCuber

Is it possible to support a [Clojure Socket Server](https://clojure.org/reference/repl_and_main#_launching_a_socket_server) ? I have code running on a remote k8s pod and I think the easiest way for me to attach a...

enhancement

Goals: - Automatic detection of unrecoverable disconnection from broker - Convenient way for the application to query the healthiness of the consumer/producer Maybe: Automatic recovery from the error

My code is something like this: ```clojure (def-db-fns ...) (declare my-query my-query2) (with-open [connection (next.jdbc/get-connection conn-pool)] (my-query connection params) (my-query2 connection params)) ``` I'd like to add a timeout to...