diff options
author | Erik Johnston <erik@matrix.org> | 2015-04-29 18:07:36 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-04-29 18:07:36 +0100 |
commit | 3864b3a8e6596c8134d01e1d94841e710914f635 (patch) | |
tree | 6cbca878890a0a7bb0098adf4293056759a013f3 /synapse/storage/pusher.py | |
parent | Typo, args wrong way round (diff) | |
download | synapse-3864b3a8e6596c8134d01e1d94841e710914f635.tar.xz |
Actually return rows
Diffstat (limited to 'synapse/storage/pusher.py')
-rw-r--r-- | synapse/storage/pusher.py | 2 |
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) |