This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-03-31
Channels
- # announcements (20)
- # asami (14)
- # aws (6)
- # babashka (15)
- # beginners (83)
- # biff (6)
- # calva (93)
- # cider (3)
- # clj-kondo (21)
- # cljdoc (106)
- # cljs-dev (32)
- # clojure (165)
- # clojure-dev (78)
- # clojure-europe (54)
- # clojure-italy (9)
- # clojure-nl (9)
- # clojure-norway (24)
- # clojure-uk (4)
- # clojurescript (6)
- # community-development (2)
- # conjure (2)
- # core-typed (14)
- # datahike (4)
- # datomic (2)
- # emacs (40)
- # events (1)
- # fulcro (11)
- # graalvm-mobile (29)
- # graphql (8)
- # honeysql (19)
- # java (1)
- # jobs (1)
- # lsp (232)
- # malli (5)
- # membrane (112)
- # nextjournal (11)
- # off-topic (63)
- # portal (12)
- # re-frame (6)
- # reagent (3)
- # reitit (4)
- # rewrite-clj (2)
- # shadow-cljs (25)
- # tools-deps (6)
I’m using lacinia-pedestal in admittedly a very strange way: I’m embedding a pedestal chain/execute call inside of a ring handler using lacina-pedestal’s default interceptors. However I’m running into the problem that many of these interceptors return a :response add a :response
to the context, but don’t terminate. It’s almost as if they assume there’s a (chain/terminate-when context :response)
somewhere; without this e.g. a query parse error will still attempt to execute the query. Is there an interceptor I’m missing?
I also use the chain in odd ways. had to include this interceptor to emulate an http server in some of my test infra
[io.pedestal.http.impl.servlet-interceptor :refer [terminator-injector]]