fix incorrect key for http server config

This commit is contained in:
Gered 2022-01-18 18:58:59 -05:00
parent cbec89beb0
commit 86eb2455b4

View file

@ -166,7 +166,7 @@
:start
(let [{:keys [port bind]
:or {port 8080
bind "0.0.0.0"}} (:http-server config)
bind "0.0.0.0"}} (:http config)
server (http-kit/run-server
(as-> #'handler h
(if (:dev? config) (wrap-reload h) h))