diff options
author | Quentin Dufour <quentin@dufour.io> | 2019-05-09 12:01:41 +0200 |
---|---|---|
committer | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-05-09 11:01:41 +0100 |
commit | 11ea16777f52264f0a1d6f4db5b7db5c6c147523 (patch) | |
tree | ac6bec0751b5bcacd09b16265c6fd3e80628d4f2 /synapse/storage | |
parent | Fix bogus imports in tests (#5154) (diff) | |
download | synapse-11ea16777f52264f0a1d6f4db5b7db5c6c147523.tar.xz |
Limit the number of EDUs in transactions to 100 as expected by receiver (#5138)
Fixes #3951.
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/deviceinbox.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/deviceinbox.py b/synapse/storage/deviceinbox.py index fed4ea3610..9b0a99cb49 100644 --- a/synapse/storage/deviceinbox.py +++ b/synapse/storage/deviceinbox.py @@ -118,7 +118,7 @@ class DeviceInboxWorkerStore(SQLBaseStore): defer.returnValue(count) def get_new_device_msgs_for_remote( - self, destination, last_stream_id, current_stream_id, limit=100 + self, destination, last_stream_id, current_stream_id, limit ): """ Args: |