diff --git a/ckanext/datastore/tests/test_dump.py b/ckanext/datastore/tests/test_dump.py index 9525a16f30e..bbe52ebb6ac 100644 --- a/ckanext/datastore/tests/test_dump.py +++ b/ckanext/datastore/tests/test_dump.py @@ -509,7 +509,6 @@ def test_dump_pagination_with_rows_max(self): assert_equals(get_csv_record_values(response.body), range(7)) - @helpers.change_config('ckan.datastore.search.rows_max', '6') @mock.patch('ckanext.datastore.controller.PAGINATE_BY', 6) def test_dump_pagination_with_rows_max_same_as_paginate(self): diff --git a/doc/maintaining/configuration.rst b/doc/maintaining/configuration.rst index 767361284c4..dfd4dcce02f 100644 --- a/doc/maintaining/configuration.rst +++ b/doc/maintaining/configuration.rst @@ -299,6 +299,7 @@ Default value: ``32000`` Maximum allowed value for the number of rows returned by the datastore. Specifically this limits: + * ``datastore_search``'s ``limit`` parameter. * ``datastore_search_sql`` queries have this limit inserted.