diff options
author | Erik Johnston <erik@matrix.org> | 2020-07-28 11:04:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-28 11:04:53 +0100 |
commit | a8f7ed28c61359c3d555c6d167771043ed0c753d (patch) | |
tree | 31d67cbea731a4e356db4fe438631a0b42a7f04d /changelog.d | |
parent | Handle replication commands synchronously where possible (#7876) (diff) | |
download | synapse-a8f7ed28c61359c3d555c6d167771043ed0c753d.tar.xz |
Typing worker needs to handle stream update requests (#7967)
IIRC this doesn't break tests because its only hit on reconnection, or something. Basically, when a process needs to fetch missing updates for the `typing` stream it needs to query the writer instance via HTTP (as we don't write typing notifications to the DB), the problem was that the endpoint (`streams`) was only registered on master and specifically not on the typing writer worker.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/7967.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/7967.bugfix b/changelog.d/7967.bugfix new file mode 100644 index 0000000000..105ea1c7e0 --- /dev/null +++ b/changelog.d/7967.bugfix @@ -0,0 +1 @@ +Fix experimental support for moving typing off master when worker is restarted, which is broken in v1.18.0-rc1. |