tomekw/hikari-cp

camel-casing of datasource properties prevents `useSSL` option for mysql

Closed this issue · 1 comments

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.

mtkp commented

I've opened a PR for this issue (see #43)