Attempting to understand why the configuration doesn't load.

This commit is contained in:
Simon Brooke 2020-02-06 15:23:59 +00:00
parent 324f26dbf7
commit dad380e0d9
No known key found for this signature in database
GPG key ID: A7A4F18D1D4DF987

View file

@ -111,9 +111,19 @@
file is read (if it is specified and present), but that individual
values can be overridden by environment variables."
(try
(timbre/info (str "Reading configuration from " config-file-path))
(let [file-contents (try
(read-string (slurp config-file-path))
(catch Exception _ {}))
(catch Exception x
(timbre/error
(str
"Failed to read configuration from "
config-file-path
" because: "
(type x)
"; "
(.getMessage x)))
{}))
config (merge
file-contents
(transform-map