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/13 14:27:16 UTC

[lucene-solr] branch reference_impl updated: #111 Fix thread ignore to catch 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 4888bd2  #111 Fix thread ignore to catch more.
4888bd2 is described below

commit 4888bd283a20661f4ea5ac2738493f51eccef6db
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Mon Jul 13 09:27:03 2020 -0500

    #111 Fix thread ignore to catch 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 82b4a70..3f6dcd5 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("worker-SendThread")) {
+    if (threadName.contains("-SendThread")) {
       return true;
     }