mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Fix pyflake warnings and add a FIXME comment to deal with auth_chains received when joining
This commit is contained in:
parent
6fea478d2e
commit
3db0efa69f
@ -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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user