camel-casing of datasource properties prevents `useSSL` option for mysql
Closed this issue · 1 comments
mattly commented
user=> (require '[org.tobereplaced.lettercase :refer [mixed-name])
nil
user=> (mixed-name "use-ssl")
"useSsl"
user=> (mixed-name "use-SSL")
"useSsl"
user=> (mixed-name "useSSL")
"useSsl"
when using jdbc directly with mysql, the option name has to be useSSL
I'll work up a PR for you soon.