This commit is contained in:
David Baker 2016-04-06 16:50:47 +01:00
parent 7e2c89a37f
commit 0fd1cd2400
4 changed files with 8 additions and 4 deletions

View file

@ -144,7 +144,7 @@ class EventPushActionsStore(SQLBaseStore):
txn.execute("SELECT MAX(stream_ordering) FROM event_push_actions")
return txn.fetchone()
result = yield self.runInteraction(
"get_latest_push_action_stream_ordering", f
"get_latest_push_action_stream_ordering", f
)
defer.returnValue(result[0] or 0)