Merge "Disabled paging by default"

This commit is contained in:
Jenkins 2014-02-20 14:46:05 +00:00 committed by Gerrit Code Review
commit 42c5e50f48
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ class RestController(pecan.rest.RestController):
Extract any paging parameters
"""
marker = params.pop('marker', None)
limit = int(params.pop('limit', 30))
limit = params.pop('limit', None)
sort_key = params.pop('sort_key', None)
sort_dir = params.pop('sort_dir', None)
return marker, limit, sort_key, sort_dir