summary refs log tree commit diff
path: root/synapse/storage/deviceinbox.py
diff options
context:
space:
mode:
authorRichard van der Hoff <github@rvanderhoff.org.uk>2017-03-15 13:07:50 +0000
committerGitHub <noreply@github.com>2017-03-15 13:07:50 +0000
commit5f14e7e9820c024cdf1b55337eeb1bdb05e557f8 (patch)
tree9fb244c8c00d9d01cd0856f0efc028caf53f4688 /synapse/storage/deviceinbox.py
parentMerge pull request #2008 from matrix-org/erikj/notifier_stats (diff)
parentFix assertion to stop transaction queue getting wedged (diff)
downloadsynapse-5f14e7e9820c024cdf1b55337eeb1bdb05e557f8.tar.xz
Merge pull request #2010 from matrix-org/rav/fix_txnq_wedge
Fix assertion to stop transaction queue getting wedged
Diffstat (limited to 'synapse/storage/deviceinbox.py')
-rw-r--r--synapse/storage/deviceinbox.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/storage/deviceinbox.py b/synapse/storage/deviceinbox.py

index 5c7db5e5f6..7925cb5f1b 100644 --- a/synapse/storage/deviceinbox.py +++ b/synapse/storage/deviceinbox.py
@@ -357,12 +357,12 @@ class DeviceInboxStore(BackgroundUpdateStore): """ Args: destination(str): The name of the remote server. - last_stream_id(int): The last position of the device message stream + last_stream_id(int|long): The last position of the device message stream that the server sent up to. - current_stream_id(int): The current position of the device + current_stream_id(int|long): The current position of the device message stream. Returns: - Deferred ([dict], int): List of messages for the device and where + Deferred ([dict], int|long): List of messages for the device and where in the stream the messages got to. """