diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-03-23 13:59:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-23 13:59:11 +0000 |
commit | a564b92d37625855940fe599c730a9958c33f973 (patch) | |
tree | be8d131a98ca583005723016a47caab0241e6009 /synapse/federation | |
parent | Merge branch 'master' into develop (diff) | |
download | synapse-a564b92d37625855940fe599c730a9958c33f973.tar.xz |
Convert `*StreamRow` classes to inner classes (#7116)
This just helps keep the rows closer to their streams, so that it's easier to see what the format of each stream is.
Diffstat (limited to 'synapse/federation')
-rw-r--r-- | synapse/federation/send_queue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/federation/send_queue.py b/synapse/federation/send_queue.py index 876fb0e245..e1700ca8aa 100644 --- a/synapse/federation/send_queue.py +++ b/synapse/federation/send_queue.py @@ -477,7 +477,7 @@ def process_rows_for_federation(transaction_queue, rows): Args: transaction_queue (FederationSender) - rows (list(synapse.replication.tcp.streams.FederationStreamRow)) + rows (list(synapse.replication.tcp.streams.federation.FederationStream.FederationStreamRow)) """ # The federation stream contains a bunch of different types of |