Skip to content
Snippets Groups Projects
Unverified Commit 654324ed authored by Amber Brown's avatar Amber Brown Committed by GitHub
Browse files

Merge pull request #3805 from matrix-org/erikj/limit_transaction_pdus_edus

Limit the number of PDUs/EDUs per fedreation transaction
parents 1d371fc5 b07a2cbe
No related branches found
No related tags found
No related merge requests found
Limit the number of PDUs/EDUs per federation transaction
......@@ -463,7 +463,19 @@ class TransactionQueue(object):
# pending_transactions flag.
pending_pdus = self.pending_pdus_by_dest.pop(destination, [])
# We can only include at most 50 PDUs per transactions
pending_pdus, leftover_pdus = pending_pdus[:50], pending_pdus[50:]
if leftover_pdus:
self.pending_pdus_by_dest[destination] = leftover_pdus
pending_edus = self.pending_edus_by_dest.pop(destination, [])
# We can only include at most 100 EDUs per transactions
pending_edus, leftover_edus = pending_edus[:100], pending_edus[100:]
if leftover_edus:
self.pending_edus_by_dest[destination] = leftover_edus
pending_presence = self.pending_presence_by_dest.pop(destination, {})
pending_edus.extend(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment