You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2021/03/09 19:05:10 UTC

[lucene-solr] 02/09: @1426 Raise timeout.

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

markrmiller pushed a commit to branch reference_impl_dev
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit 065d133c7c33a9382ddd3f4239ef16f7365d25dc
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Sat Mar 6 13:38:17 2021 -0600

    @1426 Raise timeout.
    
    Took 4 minutes
---
 solr/core/src/java/org/apache/solr/core/CoreContainer.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/core/src/java/org/apache/solr/core/CoreContainer.java b/solr/core/src/java/org/apache/solr/core/CoreContainer.java
index 4118149..4273472 100644
--- a/solr/core/src/java/org/apache/solr/core/CoreContainer.java
+++ b/solr/core/src/java/org/apache/solr/core/CoreContainer.java
@@ -866,7 +866,7 @@ public class CoreContainer implements Closeable {
       for (final CoreDescriptor cd : cds) {
         String collection = cd.getCollectionName();
         try {
-          getZkController().getZkStateReader().waitForState(collection, 5, TimeUnit.SECONDS, (n, c) -> {
+          getZkController().getZkStateReader().waitForState(collection, 15, TimeUnit.SECONDS, (n, c) -> {
             if (c == null) {
               if (log.isDebugEnabled()) log.debug("Found  incorrect state c={}", c);
               return false;