Remove unused param from get_max_token

This commit is contained in:
Erik Johnston 2016-02-18 16:37:28 +00:00
parent b8cdec92c7
commit 42109a62a4
6 changed files with 11 additions and 13 deletions

View file

@ -131,7 +131,7 @@ class EventsStore(SQLBaseStore):
except _RollbackButIsFineException:
pass
max_persisted_id = yield self._stream_id_gen.get_max_token(self)
max_persisted_id = yield self._stream_id_gen.get_max_token()
defer.returnValue((stream_ordering, max_persisted_id))
@defer.inlineCallbacks