Skip to content
Snippets Groups Projects
Commit 3045fda4 authored by Allen Gilliland's avatar Allen Gilliland
Browse files

Merge pull request #2453 from metabase/fix-stale-db-pool

actively close db connection pools when database is deleted
parents c06d3f0c 18ef9e6c
No related branches found
No related tags found
No related merge requests found
......@@ -135,8 +135,10 @@
(defendpoint DELETE "/:id"
"Delete a `Database`."
[id]
(write-check Database id)
(cascade-delete Database :id id))
(let-404 [db (Database id)]
(write-check db)
(u/prog1 (cascade-delete Database :id id)
(events/publish-event :database-delete db))))
(defendpoint GET "/:id/metadata"
"Get metadata about a `Database`, including all of its `Tables` and `Fields`.
......
......@@ -9,7 +9,7 @@
(def ^:const ^:private driver-notifications-topics
"The `Set` of event topics which are subscribed to for use in driver notifications."
#{:database-update})
#{:database-update :database-delete})
(def ^:private driver-notifications-channel
"Channel for receiving event notifications we want to subscribe to for driver notifications events."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment