summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2020-06-01 12:55:14 +0200
committerGitHub <noreply@github.com>2020-06-01 12:55:14 +0200
commitc1bdd4fac7d304d1e30f31abea88b6045262eebe (patch)
tree6358b947a8aac85016b7748975bf0fa0ea22a21c /changelog.d
parentUse upsert when inserting read receipts (#7607) (diff)
downloadsynapse-c1bdd4fac7d304d1e30f31abea88b6045262eebe.tar.xz
Don't fail all of an iteration of the device list retry loop on error (#7609)
Without this patch, if an error happens which isn't caught by `user_device_resync`, then `_maybe_retry_device_resync` would fail, without retrying the next users in the iteration. This patch fixes this so that it now only logs an error in this case.
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/7609.bugfix1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/7609.bugfix b/changelog.d/7609.bugfix
new file mode 100644
index 0000000000..e2eceeef0c
--- /dev/null
+++ b/changelog.d/7609.bugfix
@@ -0,0 +1 @@
+Prevent an entire iteration of the device list resync loop from failing if one server responds with a malformed result.