mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-05 22:28:54 +01: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
1 changed files with 6 additions and 3 deletions
|
@ -453,9 +453,12 @@ class ReplicationLayer(object):
|
||||||
|
|
||||||
state = [Pdu(outlier=True, **p) for p in content.get("state", [])]
|
state = [Pdu(outlier=True, **p) for p in content.get("state", [])]
|
||||||
|
|
||||||
auth_chain = [
|
# FIXME: We probably want to do something with the auth_chain given
|
||||||
Pdu(outlier=True, **p) for p in content.get("auth_chain", [])
|
# to us
|
||||||
]
|
|
||||||
|
# auth_chain = [
|
||||||
|
# Pdu(outlier=True, **p) for p in content.get("auth_chain", [])
|
||||||
|
# ]
|
||||||
|
|
||||||
defer.returnValue(state)
|
defer.returnValue(state)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue