diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2020-02-21 11:38:13 +0000 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2020-02-21 11:38:13 +0000 |
commit | 35a521bd6f4841162ca98706812be1eedbba85bd (patch) | |
tree | f577fcbd75aafc90d91d1b8ba803a3ef0023b9b4 /synapse/handlers/federation.py | |
parent | Fix a cache-invalidation bug for worker-based deployments (#5920) (diff) | |
parent | Implement a structured logging output system. (#5680) (diff) | |
download | synapse-35a521bd6f4841162ca98706812be1eedbba85bd.tar.xz |
Implement a structured logging output system. (#5680)
Diffstat (limited to 'synapse/handlers/federation.py')
-rw-r--r-- | synapse/handlers/federation.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/synapse/handlers/federation.py b/synapse/handlers/federation.py index 40a6496ae1..493644d400 100644 --- a/synapse/handlers/federation.py +++ b/synapse/handlers/federation.py @@ -326,8 +326,9 @@ class FederationHandler(BaseHandler): ours = yield self.store.get_state_groups_ids(room_id, seen) # state_maps is a list of mappings from (type, state_key) to event_id - # type: list[dict[tuple[str, str], str]] - state_maps = list(ours.values()) + state_maps = list( + ours.values() + ) # type: list[dict[tuple[str, str], str]] # we don't need this any more, let's delete it. del ours |