summary refs log tree commit diff
path: root/synapse/federation
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-11-12 11:27:02 +0000
committerErik Johnston <erik@matrix.org>2014-11-12 11:27:02 +0000
commit3db0efa69f5a12c40ad58c3a6bb45424a81a0954 (patch)
treecd6a001430b8b8c4d989d5c0ba2f22cc2ebc3e80 /synapse/federation
parentFix bugs with invites/joins across federatiom. (diff)
downloadsynapse-3db0efa69f5a12c40ad58c3a6bb45424a81a0954.tar.xz
Fix pyflake warnings and add a FIXME comment to deal with auth_chains received when joining
Diffstat (limited to 'synapse/federation')
-rw-r--r--synapse/federation/replication.py9
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)