Merge "fix(mongodb): Limit kwarg must be an int"

This commit is contained in:
Jenkins 2014-03-04 19:11:18 +00:00 committed by Gerrit Code Review
commit 266ca5380a

View File

@ -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.