summary refs log tree commit diff
path: root/synapse/federation
diff options
context:
space:
mode:
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)