From 3db0efa69f5a12c40ad58c3a6bb45424a81a0954 Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Wed, 12 Nov 2014 11:27:02 +0000 Subject: [PATCH] Fix pyflake warnings and add a FIXME comment to deal with auth_chains received when joining --- synapse/federation/replication.py | 9 ++++++--- 1 file 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)