Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Sohalt authored Aug 29, 2024
1 parent d6a29b2 commit 081770b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nextjournal/garden_cli.clj
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
(println "Application ready on" url)
(do
(print-error (format "Application did not start after %ss." timeout-seconds))
(print-error "Make sure your app binds to 0.0.0.0:%s and reponds with a 200 status code to HEAD requests to `/`.")
(print-error (format "Make sure your app binds to 0.0.0.0:%s and reponds with a 200 status code to HEAD requests to `/`." http-port))
(System/exit 1)))))
.start)
(fs/create-dirs storage-dir)
Expand Down

0 comments on commit 081770b

Please sign in to comment.