diff options
author | Sean Quah <8349537+squahtx@users.noreply.github.com> | 2022-09-27 11:17:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-27 11:17:23 +0100 |
commit | 85e161631a2ca7d495b619456221311ec1c93096 (patch) | |
tree | 62ec1753ffcd11e052dea63ceb3e21aeb4d67fde /changelog.d | |
parent | Complement image: propagate SIGTERM to all workers (#13914) (diff) | |
download | synapse-85e161631a2ca7d495b619456221311ec1c93096.tar.xz |
Faster room joins: Fix spurious error when joining a room (#13872)
During a `lazy_load_members` `/sync`, we look through auth events in rooms with partial state to find prior membership events. When such a membership is not found, an error is logged. Since the first join event for a user never has a prior membership event to cite, the error would always be logged when one appeared in the room timeline. Avoid logging errors for such events. Introduced in #13477. Signed-off-by: Sean Quah <seanq@matrix.org>
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/13872.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/13872.bugfix b/changelog.d/13872.bugfix new file mode 100644 index 0000000000..67d3d9e643 --- /dev/null +++ b/changelog.d/13872.bugfix @@ -0,0 +1 @@ +Faster room joins: Fix a bug introduced in 1.66.0 where an error would be logged when syncing after joining a room. |