Merge "fix(mongodb): Limit kwarg must be an int"
This commit is contained in:
commit
266ca5380a
@ -287,8 +287,10 @@ class MessageController(storage.Message):
|
||||
query['c.e'] = {'$lte': now}
|
||||
|
||||
# Construct the request
|
||||
cursor = collection.find(query, fields=fields,
|
||||
sort=[('k', sort)], limit=limit)
|
||||
cursor = collection.find(query, fields=fields, sort=[('k', sort)])
|
||||
|
||||
if limit is not None:
|
||||
cursor.limit(limit)
|
||||
|
||||
# NOTE(flaper87): Suggest the index to use for this query to
|
||||
# ensure the most performant one is chosen.
|
||||
|
Loading…
x
Reference in New Issue
Block a user