From 0618978238cfc458bbf075fe9e94f3f807007679 Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Wed, 29 Apr 2015 18:04:35 +0100 Subject: [PATCH] Typo, args wrong way round --- synapse/storage/pusher.py | 5 +---- 1 file changed, 1 insertion(+), 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