diff options
author | Erik Johnston <erik@matrix.org> | 2015-04-29 18:04:35 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-04-29 18:04:35 +0100 |
commit | 0618978238cfc458bbf075fe9e94f3f807007679 (patch) | |
tree | 98a9396ec544eebf7d8d05e3a9cf6152c0df36c6 /synapse/storage/pusher.py | |
parent | Decode buffers in same thread (diff) | |
download | synapse-0618978238cfc458bbf075fe9e94f3f807007679.tar.xz |
Typo, args wrong way round
Diffstat (limited to 'synapse/storage/pusher.py')
-rw-r--r-- | synapse/storage/pusher.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/synapse/storage/pusher.py b/synapse/storage/pusher.py index c51e08fa27..a0fe8853e5 100644 --- a/synapse/storage/pusher.py +++ b/synapse/storage/pusher.py @@ -60,10 +60,7 @@ class PusherStore(SQLBaseStore): ) pass - rows = yield self.runInteraction( - get_pushers, - desc="get_all_pushers", - ) + rows = yield self.runInteraction("get_all_pushers", get_pushers) defer.returnValue(rows) @defer.inlineCallbacks |