fix HikariCP example

This commit is contained in:
Sean Corfield 2022-05-20 11:20:43 -07:00
parent 68cff61e94
commit 0bdffbc87f

View file

@ -479,7 +479,7 @@ In addition, for HikariCP, you can specify properties to be applied to the under
```clojure
;; assumes next.jdbc.connection has been required as connection
(connection/->pool com.zaxxer.hikari.HikariConfig
(connection/->pool com.zaxxer.hikari.HikariDataSource
{:dbtype "postgres" :dbname "thedb" :username "dbuser" :password "secret"
:dataSourceProperties {:socketTimeout 30}})
```