summary refs log tree commit diff
path: root/synapse/storage/pusher.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-04-29 18:07:36 +0100
committerErik Johnston <erik@matrix.org>2015-04-29 18:07:36 +0100
commit3864b3a8e6596c8134d01e1d94841e710914f635 (patch)
tree6cbca878890a0a7bb0098adf4293056759a013f3 /synapse/storage/pusher.py
parentTypo, args wrong way round (diff)
downloadsynapse-3864b3a8e6596c8134d01e1d94841e710914f635.tar.xz
Actually return rows
Diffstat (limited to 'synapse/storage/pusher.py')
-rw-r--r--synapse/storage/pusher.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/storage/pusher.py b/synapse/storage/pusher.py
index a0fe8853e5..c2aaf60286 100644
--- a/synapse/storage/pusher.py
+++ b/synapse/storage/pusher.py
@@ -60,6 +60,8 @@ class PusherStore(SQLBaseStore):
                     )
                     pass
 
+            return rows
+
         rows = yield self.runInteraction("get_all_pushers", get_pushers)
         defer.returnValue(rows)