mirror of https://github.com/apache/archiva.git
make no limit working back
This commit is contained in:
parent
641e04909f
commit
30d380e6b0
|
@ -274,7 +274,8 @@ public class MavenRepositorySearch
|
|||
request.setContexts( getIndexingContexts( indexingContextIds ) );
|
||||
if ( limits != null )
|
||||
{
|
||||
if ( limits.getSelectedPage() < 1 )
|
||||
// we apply limits only when first page asked
|
||||
if ( limits.getSelectedPage() == 0 )
|
||||
{
|
||||
request.setCount( limits.getPageSize() * ( Math.max( 1, limits.getSelectedPage() ) ) );
|
||||
}
|
||||
|
|
|
@ -879,7 +879,7 @@ public class MavenRepositorySearchTest
|
|||
repo.toURI().toURL().toExternalForm(),
|
||||
indexDirectory.toURI().toURL().toString(), search.getAllIndexCreators() );
|
||||
|
||||
SearchResultLimits limits = new SearchResultLimits( 0 );
|
||||
SearchResultLimits limits = new SearchResultLimits( SearchResultLimits.ALL_PAGES );
|
||||
limits.setPageSize( 300 );
|
||||
|
||||
EasyMock.expect( archivaConfig.getConfiguration() ).andReturn( config ).times( 1, 5 );
|
||||
|
|
Loading…
Reference in New Issue