raise poll timeout to 45s

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1422737 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2012-12-17 02:09:07 +00:00
parent 1491b57338
commit b73fb7322e
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ public class TestReplicationHandler extends SolrTestCaseJ4 {
docList = (SolrDocumentList) res.get("response");
timeSlept += 100;
Thread.sleep(100);
} while(docList.getNumFound() != expectedDocCount && timeSlept < 30000);
} while(docList.getNumFound() != expectedDocCount && timeSlept < 45000);
return res;
}