Created
May 2, 2020 08:10
-
-
Save ivos/4f42c64306ea9d7ee86bad5c9b1fbe8a 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 [clojure.tools.logging :as log] | |
[mount.core :refer [defstate]] | |
[hikari-cp.core :as ds] | |
[backend.system.config :refer [config]] | |
[backend.system.database])) | |
(defstate datasource | |
:start (ds/make-datasource (:db config)) | |
:stop (try | |
(ds/close-datasource 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