You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ja...@apache.org on 2021/03/26 16:46:14 UTC

[lucene] 05/07: @1441 Log it for the load tests, don't kill it.

This is an automated email from the ASF dual-hosted git repository.

janhoy pushed a commit to tag history/branches/lucene-solr/reference_impl
in repository https://gitbox.apache.org/repos/asf/lucene.git

commit f2dcb3f439f0093c7822270f081d98d15353e564
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Tue Mar 9 20:54:01 2021 -0600

    @1441 Log it for the load tests, don't kill it.
    
    Took 28 minutes
---
 solr/core/src/java/org/apache/solr/cloud/ZkController.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/core/src/java/org/apache/solr/cloud/ZkController.java b/solr/core/src/java/org/apache/solr/cloud/ZkController.java
index c205778..2a78b18 100644
--- a/solr/core/src/java/org/apache/solr/cloud/ZkController.java
+++ b/solr/core/src/java/org/apache/solr/cloud/ZkController.java
@@ -1263,7 +1263,7 @@ public class ZkController implements Closeable, Runnable {
         Replica replica = docCollection.getReplica(coreName);
         if (replica != null && !baseUrl.equals(replica.getBaseUrl())) {
           log.error("wrong base url for this node in replica entry replica={}", replica);
-          throw new IllegalArgumentException("wrong base url for this node in replica entry baseUrl=" + baseUrl + " replica=" + replica);
+          //throw new IllegalArgumentException("wrong base url for this node in replica entry baseUrl=" + baseUrl + " replica=" + replica);
         }
       }