0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-30 08:28:19 +02:00

Fix pyflake warnings and add a FIXME comment to deal with auth_chains received when joining

This commit is contained in:
Erik Johnston 2014-11-12 11:27:02 +00:00
parent 6fea478d2e
commit 3db0efa69f

View file

@ -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)