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

krisden pushed a commit to branch branch_9_0
in repository https://gitbox.apache.org/repos/asf/solr.git

commit cd7fc3a22f23b9a7c53d44b826feb044d312f121
Author: Kevin Risden <kris...@apache.org>
AuthorDate: Tue Feb 22 20:56:17 2022 -0500

    SOLR-16043: Add Command processor to BadHdfsThreadsFilter
---
 .../hdfs/src/test/org/apache/solr/hdfs/util/BadHdfsThreadsFilter.java   | 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/solr/modules/hdfs/src/test/org/apache/solr/hdfs/util/BadHdfsThreadsFilter.java
 
b/solr/modules/hdfs/src/test/org/apache/solr/hdfs/util/BadHdfsThreadsFilter.java
index b13ec19..d2fc7d7 100644
--- 
a/solr/modules/hdfs/src/test/org/apache/solr/hdfs/util/BadHdfsThreadsFilter.java
+++ 
b/solr/modules/hdfs/src/test/org/apache/solr/hdfs/util/BadHdfsThreadsFilter.java
@@ -42,6 +42,8 @@ public class BadHdfsThreadsFilter implements ThreadFilter {
       return true;
     } else if (name.startsWith("nioEventLoopGroup")) {
       return true; // netty threads waiting for a web server stop confirm that 
won't happen
+    } else if (name.startsWith("Command processor")) { // SOLR-16043 and 
HDFS-14997
+      return true;
     }
 
     return false;

Reply via email to