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/07/20 14:40:14 UTC

[lucene-solr] branch reference_impl updated: @254 - One more.

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


The following commit(s) were added to refs/heads/reference_impl by this push:
     new 349870d  @254 - One more.
349870d is described below

commit 349870d7f51406c2b128457fb4056eead389fb6b
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Mon Jul 20 09:39:09 2020 -0500

    @254 - One more.
---
 .../src/java/org/apache/solr/SolrIgnoredThreadsFilter.java              | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/test-framework/src/java/org/apache/solr/SolrIgnoredThreadsFilter.java b/solr/test-framework/src/java/org/apache/solr/SolrIgnoredThreadsFilter.java
index c0fcf78..aa0c73c 100644
--- a/solr/test-framework/src/java/org/apache/solr/SolrIgnoredThreadsFilter.java
+++ b/solr/test-framework/src/java/org/apache/solr/SolrIgnoredThreadsFilter.java
@@ -80,7 +80,7 @@ public class SolrIgnoredThreadsFilter implements ThreadFilter {
     if (threadName.startsWith("ScheduledTrigger")) {
       return true;
     }
-    if (threadName.contains("-SendThread") || threadName.startsWith("NIOWorkerThread")) {
+    if (threadName.contains("-SendThread") || threadName.startsWith("NIOWorkerThread") || threadName.startsWith("ZkCallback")) {
       return true;
     }