summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2019-08-28 10:18:16 +0100
committerGitHub <noreply@github.com>2019-08-28 10:18:16 +0100
commit49ef8ec3995db4d14e1b1367c9cd96ea231072f4 (patch)
tree671097e8cdebb335c9e6c6335539e64fc1297d50 /changelog.d
parentMerge pull request #5914 from matrix-org/rei/admin_getadmin (diff)
downloadsynapse-49ef8ec3995db4d14e1b1367c9cd96ea231072f4.tar.xz
Fix a cache-invalidation bug for worker-based deployments (#5920)
Some of the caches on worker processes were not being correctly invalidated
when a room's state was changed in a way that did not affect the membership
list of the room.

We need to make sure we send out cache invalidations even when no memberships
are changing.
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/5920.bugfix1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/5920.bugfix b/changelog.d/5920.bugfix
new file mode 100644
index 0000000000..e45eb0ffee
--- /dev/null
+++ b/changelog.d/5920.bugfix
@@ -0,0 +1 @@
+Fix a cache-invalidation bug for worker-based deployments.