summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2020-11-12 14:26:24 +0000
committerGitHub <noreply@github.com>2020-11-12 14:26:24 +0000
commitc2d4467cd435851484b29685959124c541d47842 (patch)
treee1f83d57879f903bad9c4432aba522d3528628f2 /changelog.d
parentFix port script fails when DB has no backfilled events. (#8729) (diff)
downloadsynapse-c2d4467cd435851484b29685959124c541d47842.tar.xz
Enable reconnection in DB pool (#8726)
`adbapi.ConnectionPool` let's you turn on auto reconnect of DB connections. This is off by default.
As far as I can tell if its not enabled dead connections never get removed from the pool.

Maybe helps #8574
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/8726.bugfix1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/8726.bugfix b/changelog.d/8726.bugfix
new file mode 100644
index 0000000000..831f773a25
--- /dev/null
+++ b/changelog.d/8726.bugfix
@@ -0,0 +1 @@
+Fix bug where Synapse would not recover after losing connection to the database.