mirror of https://github.com/apache/lucene.git
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:
parent
c0b2330827
commit
81ce259cf5
|
@ -142,7 +142,7 @@ public class TestDynamicLoading extends AbstractFullDistribZkTestBase {
|
||||||
"2",10);
|
"2",10);
|
||||||
|
|
||||||
success= false;
|
success= false;
|
||||||
for(int i=0;i<50;i++) {
|
for(int i=0;i<100;i++) {
|
||||||
map = TestSolrConfigHandler.getRespMap("/test1?wt=json", client);
|
map = TestSolrConfigHandler.getRespMap("/test1?wt=json", client);
|
||||||
if(BlobStoreTestRequestHandlerV2.class.getName().equals(map.get("class"))) {
|
if(BlobStoreTestRequestHandlerV2.class.getName().equals(map.get("class"))) {
|
||||||
success = true;
|
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);
|
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);
|
map = TestSolrConfigHandler.getRespMap("/test1?wt=json", client);
|
||||||
if("X val".equals(map.get("x"))){
|
if("X val".equals(map.get("x"))){
|
||||||
success = true;
|
success = true;
|
||||||
|
|
Loading…
Reference in New Issue