mirror of
https://github.com/Alfresco/SearchServices.git
synced 2026-09-16 18:12:56 +00:00
Search-1493: Allowing more time for indexing, upto 6 tries instead of 3, this does not make other tests slower
This commit is contained in:
@@ -273,7 +273,7 @@ public abstract class AbstractSearchServiceE2E extends AbstractTestNGSpringConte
|
||||
String expectedStatusCode = HttpStatus.OK.toString();
|
||||
|
||||
// Repeat search until the query results are as expected or Search Retry count is hit
|
||||
for (int searchCount = 1; searchCount <= 5; searchCount++)
|
||||
for (int searchCount = 1; searchCount <= 6; searchCount++)
|
||||
{
|
||||
SearchRequest searchRequest = createQuery(userQuery);
|
||||
SearchResponse response = query(searchRequest);
|
||||
|
||||
Reference in New Issue
Block a user