From c2bdede29ab6c9fd491243ca741454ace5a17319 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 3 Jul 2019 17:57:07 +0200 Subject: [PATCH] fix(backend): start http server with no deamon threads --- backend/src/uxbox/http.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/uxbox/http.clj b/backend/src/uxbox/http.clj index f8f6af6a7..8e7ce1dff 100644 --- a/backend/src/uxbox/http.clj +++ b/backend/src/uxbox/http.clj @@ -121,7 +121,7 @@ [config] (jetty/run-jetty @app {:join? false :async? true - :daemon? true + :daemon? false :port (:http-server-port config)})) (defstate server