ring-swagger

ring-swagger & compojure-api
ikitommi 2018-12-10T07:14:03.073Z

@jon324 the aleph-example is in the blog:

(defn ring->aleph [handler]
  (fn [request]
    (let [response (d/deferred)]
      (handler request #(d/success! response %) #(d/error! response %))
      response)))

ikitommi 2018-12-10T07:14:26.073100Z

2018-12-10T14:06:36.074600Z

@jon324 how are you starting your webapp?

2018-12-10T18:03:14.075300Z

I wound up sticking with aleph and using manifold streams instead.