Skip to content

Commit

Permalink
Merge branch 'release-v0.17.3' of github.com:matrix-org/synapse
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston committed Sep 9, 2016
2 parents 5834c61 + 66efcbb commit 9bba6eb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
Changes in synapse v0.17.3 (2016-09-09)
=======================================

This release fixes a major bug that stopped servers from handling rooms with
over 1000 members.


Changes in synapse v0.17.2 (2016-09-08)
=======================================

This release contains security bug fixes. Please upgrade.


No changes since v0.17.2
No changes since v0.17.2-rc1


Changes in synapse v0.17.2-rc1 (2016-09-05)
Expand Down
2 changes: 1 addition & 1 deletion synapse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
""" This is a reference implementation of a Matrix home server.
"""

__version__ = "0.17.2"
__version__ = "0.17.3"
2 changes: 1 addition & 1 deletion synapse/storage/roommember.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ def _get_joined_users_from_context(self, room_id, state_group, current_state_ids
keyvalues={
"membership": Membership.JOIN,
},
batch_size=1000,
batch_size=500,
desc="_get_joined_users_from_context",
)

Expand Down

0 comments on commit 9bba6eb

Please sign in to comment.