Fix non integer limit
This commit is contained in:
parent
8446bce733
commit
aadcb6298d
|
@ -757,7 +757,8 @@ class StreamWorkerStore(EventsWorkerStore, SQLBaseStore):
|
|||
bounds += " AND " + filter_clause
|
||||
args.extend(filter_args)
|
||||
|
||||
args.append(int(limit))
|
||||
limit = int(limit)
|
||||
args.append(limit)
|
||||
|
||||
sql = (
|
||||
"SELECT event_id, chunk_id, topological_ordering, stream_ordering"
|
||||
|
|
Loading…
Reference in New Issue