diff options
author | Travis Ralston <travpc@gmail.com> | 2018-07-31 12:13:09 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-31 12:13:09 -0600 |
commit | 5e2ee64660b17e34894c019baba8c68943645e96 (patch) | |
tree | b94e5d7df52061231f48945628c58cbbedfe6d04 /synapse/federation/transport | |
parent | Merge pull request #3612 from matrix-org/rav/store_heirarchy (diff) | |
parent | Remove pdu_failures from transactions (diff) | |
download | synapse-5e2ee64660b17e34894c019baba8c68943645e96.tar.xz |
Merge pull request #3628 from turt2live/travis/goodby-pdu-failures
Remove pdu_failures from transactions
Diffstat (limited to 'synapse/federation/transport')
-rw-r--r-- | synapse/federation/transport/server.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/federation/transport/server.py b/synapse/federation/transport/server.py index 8574898f0c..3b5ea9515a 100644 --- a/synapse/federation/transport/server.py +++ b/synapse/federation/transport/server.py @@ -283,11 +283,10 @@ class FederationSendServlet(BaseFederationServlet): ) logger.info( - "Received txn %s from %s. (PDUs: %d, EDUs: %d, failures: %d)", + "Received txn %s from %s. (PDUs: %d, EDUs: %d)", transaction_id, origin, len(transaction_data.get("pdus", [])), len(transaction_data.get("edus", [])), - len(transaction_data.get("failures", [])), ) # We should ideally be getting this from the security layer. |