diff options
author | Erik Johnston <erik@matrix.org> | 2017-04-10 10:02:17 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-04-10 10:02:17 +0100 |
commit | ab904caf3324de82c338268984c979d66f00aed9 (patch) | |
tree | 5c285c0c41223360cf2892d621c92df99bc21b3a /synapse/replication | |
parent | Comment (diff) | |
download | synapse-ab904caf3324de82c338268984c979d66f00aed9.tar.xz |
Comments
Diffstat (limited to 'synapse/replication')
-rw-r--r-- | synapse/replication/tcp/streams.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/replication/tcp/streams.py b/synapse/replication/tcp/streams.py index 967b459e0e..369d5f2428 100644 --- a/synapse/replication/tcp/streams.py +++ b/synapse/replication/tcp/streams.py @@ -98,8 +98,8 @@ ToDeviceStreamRow = namedtuple("ToDeviceStreamRow", ( "entity", # str )) FederationStreamRow = namedtuple("FederationStreamRow", ( - "type", # str - "data", # dict + "type", # str, the type of data as defined in the BaseFederationRows + "data", # dict, serialization of a federation.send_queue.BaseFederationRow )) TagAccountDataStreamRow = namedtuple("TagAccountDataStreamRow", ( "user_id", # str |