Last active
May 2, 2020 08:16
-
-
Save ivos/4a396092dec64a168baf2bdc261f9a06 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns backend.system.datasource | |
(:require ...) | |
(:import (net.bull.javamelody JdbcWrapper) | |
(java.io Closeable))) | |
(defn- create-instance | |
[] | |
(let [hikari-ds (ds/make-datasource (:db config)) | |
java-melody-wrapped-ds (.createDataSourceProxy JdbcWrapper/SINGLETON hikari-ds)] | |
java-melody-wrapped-ds)) | |
(defstate datasource | |
:start (create-instance) | |
:stop (try | |
(.close ^Closeable datasource) | |
(catch Throwable t | |
(log/warn t "Error stopping datasource.")))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment