diff options
author | Erik Johnston <erik@matrix.org> | 2020-05-13 10:27:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-13 10:27:02 +0100 |
commit | 7ee24c5674a36dc9cd7163cfdd3e14b74570dc77 (patch) | |
tree | a6676da63007e1cdde559db9d74ecd6d1ff5b8cd /changelog.d | |
parent | Fix Redis reconnection logic (#7482) (diff) | |
download | synapse-7ee24c5674a36dc9cd7163cfdd3e14b74570dc77.tar.xz |
Have all instances correctly respond to REPLICATE command. (#7475)
Before all streams were only written to from master, so only master needed to respond to `REPLICATE` commands. Before all instances wrote to the cache invalidation stream, but didn't respond to `REPLICATE`. This was a bug, which could lead to missed rows from cache invalidation stream if an instance is restarted, however all the caches would be empty in that case so it wasn't a problem.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/7475.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/7475.misc b/changelog.d/7475.misc new file mode 100644 index 0000000000..77759c3bd4 --- /dev/null +++ b/changelog.d/7475.misc @@ -0,0 +1 @@ +Have all instance correctly respond to REPLICATE command. |