SOLR-6801 increase wait times to address failures http://jenkins.thetaphi.de/job/Lucene-Solr-5.x-MacOSX/1989/

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1649345 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Noble Paul 2015-01-04 14:50:26 +00:00
parent c0b2330827
commit 81ce259cf5
1 changed files with 2 additions and 2 deletions

View File

@ -142,7 +142,7 @@ public class TestDynamicLoading extends AbstractFullDistribZkTestBase {
"2",10);
success= false;
for(int i=0;i<50;i++) {
for(int i=0;i<100;i++) {
map = TestSolrConfigHandler.getRespMap("/test1?wt=json", client);
if(BlobStoreTestRequestHandlerV2.class.getName().equals(map.get("class"))) {
success = true;
@ -153,7 +153,7 @@ public class TestDynamicLoading extends AbstractFullDistribZkTestBase {
assertTrue("New version of class is not loaded " + new String(ZkStateReader.toJSON(map), StandardCharsets.UTF_8), success);
for(int i=0;i<50;i++) {
for(int i=0;i<100;i++) {
map = TestSolrConfigHandler.getRespMap("/test1?wt=json", client);
if("X val".equals(map.get("x"))){
success = true;