Skip to content
Snippets Groups Projects
Unverified Commit 54460e7d authored by Ngoc Khuat's avatar Ngoc Khuat Committed by GitHub
Browse files

Fix unable to start dev mode with a fresh DB (#34640)

parent 8c82d6bf
No related branches found
No related tags found
No related merge requests found
......@@ -87,11 +87,11 @@
(defn start!
[]
(server/start-web-server! #'handler/app)
(when-not @initialized?
(init!))
(when config/is-dev?
(prune-deleted-inmem-databases!)
(with-out-str (malli-dev/start!)))
(when-not @initialized?
(init!)))
(with-out-str (malli-dev/start!))))
(defn stop!
[]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment