diff options
author | Erik Johnston <erik@matrix.org> | 2014-11-12 11:27:02 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-11-12 11:27:02 +0000 |
commit | 3db0efa69f5a12c40ad58c3a6bb45424a81a0954 (patch) | |
tree | cd6a001430b8b8c4d989d5c0ba2f22cc2ebc3e80 /synapse | |
parent | Fix bugs with invites/joins across federatiom. (diff) | |
download | synapse-3db0efa69f5a12c40ad58c3a6bb45424a81a0954.tar.xz |
Fix pyflake warnings and add a FIXME comment to deal with auth_chains received when joining
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/federation/replication.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/synapse/federation/replication.py b/synapse/federation/replication.py index beec17e386..a07e307849 100644 --- a/synapse/federation/replication.py +++ b/synapse/federation/replication.py @@ -453,9 +453,12 @@ class ReplicationLayer(object): state = [Pdu(outlier=True, **p) for p in content.get("state", [])] - auth_chain = [ - Pdu(outlier=True, **p) for p in content.get("auth_chain", []) - ] + # FIXME: We probably want to do something with the auth_chain given + # to us + + # auth_chain = [ + # Pdu(outlier=True, **p) for p in content.get("auth_chain", []) + # ] defer.returnValue(state) |