summary refs log tree commit diff
path: root/synapse/federation
diff options
context:
space:
mode:
authorAndrew Morgan <1342360+anoadragon453@users.noreply.github.com>2019-10-30 11:16:19 +0000
committerGitHub <noreply@github.com>2019-10-30 11:16:19 +0000
commit7955abeaac54e97332bd42186299e648bb3ace6c (patch)
tree1ff3ee12a2d01d3efb39a051f61719a2712ef34b /synapse/federation
parentFix typo in domain name in account_threepid_delegates config option (#6273) (diff)
downloadsynapse-7955abeaac54e97332bd42186299e648bb3ace6c.tar.xz
Fix small typo in comment (#6269)
Diffstat (limited to 'synapse/federation')
-rw-r--r--synapse/federation/federation_server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/federation/federation_server.py b/synapse/federation/federation_server.py
index 7c331753ad..d5a19764d2 100644
--- a/synapse/federation/federation_server.py
+++ b/synapse/federation/federation_server.py
@@ -145,7 +145,7 @@ class FederationServer(FederationBase):
 
         logger.debug("[%s] Transaction is new", transaction.transaction_id)
 
-        # Reject if PDU count > 50 and EDU count > 100
+        # Reject if PDU count > 50 or EDU count > 100
         if len(transaction.pdus) > 50 or (
             hasattr(transaction, "edus") and len(transaction.edus) > 100
         ):