From adc40b9136c7041a5e4b470db7bbed4e2b044094 Mon Sep 17 00:00:00 2001 From: Daniel Gibbons Date: Tue, 8 Oct 2019 22:33:58 -0700 Subject: [PATCH] Increase REPL timeout to 5 minutes Starting a REPL on a new project times out (issue #243). This increases the timeout for starting the REPL to 5 minutes. --- src/leiningen/new/chestnut/project.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/leiningen/new/chestnut/project.clj b/src/leiningen/new/chestnut/project.clj index 0134b9f..361f883 100644 --- a/src/leiningen/new/chestnut/project.clj +++ b/src/leiningen/new/chestnut/project.clj @@ -24,7 +24,7 @@ ;; nREPL by default starts in the :main namespace, we want to start in `user` ;; because that's where our development helper functions like (go) and ;; (browser-repl) live. - :repl-options {:init-ns user} + :repl-options {:timeout 300000 :init-ns user} :cljsbuild {:builds [{:id "app"