summary refs log tree commit diff
path: root/synapse/storage/devices.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/devices.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/devices.py')
-rw-r--r--synapse/storage/devices.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/devices.py b/synapse/storage/devices.py
index 563071b7a9..e545b62e39 100644
--- a/synapse/storage/devices.py
+++ b/synapse/storage/devices.py
@@ -308,7 +308,7 @@ class DeviceStore(SQLBaseStore):
         """Get stream of updates to send to remote servers
 
         Returns:
-            (now_stream_id, [ { updates }, .. ])
+            (int, list[dict]): current stream id and list of updates
         """
         now_stream_id = self._device_list_id_gen.get_current_token()