diff options
author | David Robertson <davidr@element.io> | 2021-10-06 13:56:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-06 12:56:45 +0000 |
commit | 370bca32e60a854ab063f1abedb087dacae37e5a (patch) | |
tree | fc1f91ec6da55e34ac6c223b308881e719eee6b2 /synapse/handlers | |
parent | Updated development doc on samling environment for testing. (#10973) (diff) | |
download | synapse-370bca32e60a854ab063f1abedb087dacae37e5a.tar.xz |
Don't drop user dir deltas when server leaves room (#10982)
Fix a long-standing bug where a batch of user directory changes would be silently dropped if the server left a room early in the batch. * Pull out `wait_for_background_update` in tests Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com> Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/user_directory.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/user_directory.py b/synapse/handlers/user_directory.py index 18d8c8744e..97f60b5806 100644 --- a/synapse/handlers/user_directory.py +++ b/synapse/handlers/user_directory.py @@ -220,7 +220,7 @@ class UserDirectoryHandler(StateDeltasHandler): for user_id in user_ids: await self._handle_remove_user(room_id, user_id) - return + continue else: logger.debug("Server is still in room: %r", room_id) |