From 54460e7dc61ad02eb17d013b5ab54895f7162fe8 Mon Sep 17 00:00:00 2001 From: Ngoc Khuat <qn.khuat@gmail.com> Date: Fri, 13 Oct 2023 19:57:16 +0700 Subject: [PATCH] Fix unable to start dev mode with a fresh DB (#34640) --- dev/src/dev.clj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev/src/dev.clj b/dev/src/dev.clj index 7538aa5c8f5..e62d5dcb543 100644 --- a/dev/src/dev.clj +++ b/dev/src/dev.clj @@ -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! [] -- GitLab