From ca6738d20cce248bd238d7efd42c4c361ad625b8 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 24 Nov 2023 14:54:10 +0100 Subject: [PATCH] :sparkles: Remove executor dependency from awsns handlers --- backend/src/app/http/awsns.clj | 7 +++---- backend/src/app/main.clj | 3 +-- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/backend/src/app/http/awsns.clj b/backend/src/app/http/awsns.clj index f9e9179b1..7508be8a2 100644 --- a/backend/src/app/http/awsns.clj +++ b/backend/src/app/http/awsns.clj @@ -31,14 +31,13 @@ (defmethod ig/pre-init-spec ::routes [_] (s/keys :req [::http/client ::main/props - ::db/pool - ::wrk/executor])) + ::db/pool])) (defmethod ig/init-key ::routes - [_ {:keys [::wrk/executor] :as cfg}] + [_ cfg] (letfn [(handler [request] (let [data (-> request rreq/body slurp)] - (px/run! executor #(handle-request cfg data))) + (px/run! :vthread (partial handle-request cfg data))) {::rres/status 200})] ["/sns" {:handler handler :allowed-methods #{:post}}])) diff --git a/backend/src/app/main.clj b/backend/src/app/main.clj index 125f238d3..ebf18468e 100644 --- a/backend/src/app/main.clj +++ b/backend/src/app/main.clj @@ -228,8 +228,7 @@ ::http.awsns/routes {::props (ig/ref ::setup/props) ::db/pool (ig/ref ::db/pool) - ::http.client/client (ig/ref ::http.client/client) - ::wrk/executor (ig/ref ::wrk/executor)} + ::http.client/client (ig/ref ::http.client/client)} ::http/server {::http/port (cf/get :http-server-port)