diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2020-03-16 15:36:17 +0000 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2020-03-16 15:36:17 +0000 |
commit | 6837c02602e71259ed27990c7912ce4b6e4cdee1 (patch) | |
tree | 2b5ca25b034bbb48acc24d7121cf4f30b5b44e99 /synapse | |
parent | Fix typo in domain name in account_threepid_delegates config option (#6273) (diff) | |
parent | Fix small typo in comment (#6269) (diff) | |
download | synapse-6837c02602e71259ed27990c7912ce4b6e4cdee1.tar.xz |
Fix small typo in comment (#6269)
* commit '7955abeaa': Fix small typo in comment (#6269)
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/federation/federation_server.py | 2 |
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 ): |