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 2020/08/30 15:40:17 UTC

[lucene-solr] 01/02: @630 Trade off a bit of test time to see if this is causing spurious fails.

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

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

commit 48d2a67c654efe3871e51bf49040a6361cd9ac6d
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Sun Aug 30 10:01:59 2020 -0500

    @630 Trade off a bit of test time to see if this is causing spurious fails.
---
 solr/test-framework/src/java/org/apache/solr/cloud/ZkTestServer.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/solr/test-framework/src/java/org/apache/solr/cloud/ZkTestServer.java b/solr/test-framework/src/java/org/apache/solr/cloud/ZkTestServer.java
index b4f1d5d..17dd48b 100644
--- a/solr/test-framework/src/java/org/apache/solr/cloud/ZkTestServer.java
+++ b/solr/test-framework/src/java/org/apache/solr/cloud/ZkTestServer.java
@@ -410,8 +410,8 @@ public class ZkTestServer implements Closeable {
             cnxnFactory.shutdown();
 
             cnxnFactory.join();
-
-            ((Thread)zkServer.zooKeeperServer.getSessionTracker()).interrupt();
+            // eats some extra sleep time not to do this, but I think it can cause spurious fails
+            //((Thread)zkServer.zooKeeperServer.getSessionTracker()).interrupt();
             ((Thread)zkServer.zooKeeperServer.getSessionTracker()).join();
             return cnxnFactory;
           });