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:04:35 +0100
committerErik Johnston <erik@matrix.org>2015-04-29 18:04:35 +0100
commit0618978238cfc458bbf075fe9e94f3f807007679 (patch)
tree98a9396ec544eebf7d8d05e3a9cf6152c0df36c6 /synapse/storage/pusher.py
parentDecode buffers in same thread (diff)
downloadsynapse-0618978238cfc458bbf075fe9e94f3f807007679.tar.xz
Typo, args wrong way round
Diffstat (limited to '')
-rw-r--r--synapse/storage/pusher.py5
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