Skip to content

Commit

Permalink
Change default batch size to 25.
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasgraf committed May 19, 2016
1 parent 74a2f45 commit eb8b040
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/source/batching.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ request a specific batch page, containing ``b_size`` items starting from
================ ===========================================================
Parameter Description
================ ===========================================================
``b_size`` Batch size (default is 10)
``b_size`` Batch size (default is 25)
``b_start`` First item of the batch
================ ===========================================================

Expand Down
2 changes: 1 addition & 1 deletion src/plone/restapi/batching.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from urlparse import parse_qsl


DEFAULT_BATCH_SIZE = 10
DEFAULT_BATCH_SIZE = 25


class HypermediaBatch(Batch):
Expand Down

0 comments on commit eb8b040

Please sign in to comment.