diff options
author | Erik Johnston <erik@matrix.org> | 2020-03-23 16:13:12 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2020-03-23 16:13:12 +0000 |
commit | ba1a8be9300595104c580e2c8e652ba2c58afff3 (patch) | |
tree | dbf0cac65e06fe601c1d565b24072502b2fda9f9 /synapse/replication/tcp/streams/_base.py | |
parent | Remove unused 'stream' param of REPLICATE and update docs (diff) | |
download | synapse-ba1a8be9300595104c580e2c8e652ba2c58afff3.tar.xz |
Review comments
Diffstat (limited to '')
-rw-r--r-- | synapse/replication/tcp/streams/_base.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/synapse/replication/tcp/streams/_base.py b/synapse/replication/tcp/streams/_base.py index 97af6bf9e1..d5b9c2831b 100644 --- a/synapse/replication/tcp/streams/_base.py +++ b/synapse/replication/tcp/streams/_base.py @@ -79,10 +79,10 @@ class Stream(object): since the stream was constructed if it hadn't been called before). Returns: - Resolves to a pair `(updates, new_last_token, limited)`, where - `updates` is a list of `(token, row)` entries, `new_last_token` is - the new position in stream, and `limited` is whether there are - more updates to fetch. + A triplet `(updates, new_last_token, limited)`, where `updates` is + a list of `(token, row)` entries, `new_last_token` is the new + position in stream, and `limited` is whether there are more updates + to fetch. """ current_token = self.current_token() updates, current_token, limited = await self.get_updates_since( @@ -99,10 +99,10 @@ class Stream(object): stream updates Returns: - Resolves to a pair `(updates, new_last_token, limited)`, where - `updates` is a list of `(token, row)` entries, `new_last_token` is - the new position in stream, and `limited` is whether there are - more updates to fetch. + A triplet `(updates, new_last_token, limited)`, where `updates` is + a list of `(token, row)` entries, `new_last_token` is the new + position in stream, and `limited` is whether there are more updates + to fetch. """ if from_token in ("NOW", "now"): |