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/28 17:51:23 UTC

[lucene-solr] branch reference_impl_dev updated: @430 Add this one as well.

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


The following commit(s) were added to refs/heads/reference_impl_dev by this push:
     new faeceaa  @430 Add this one as well.
faeceaa is described below

commit faeceaab0bfad4da4d98a4d2de6f3b37d68889e5
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Tue Jul 28 12:51:06 2020 -0500

    @430 Add this one as well.
---
 .../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 03db4ad..644386e 100644
--- a/solr/test-framework/src/java/org/apache/solr/SolrIgnoredThreadsFilter.java
+++ b/solr/test-framework/src/java/org/apache/solr/SolrIgnoredThreadsFilter.java
@@ -67,7 +67,7 @@ public class SolrIgnoredThreadsFilter implements ThreadFilter {
 
     // randomizedtesting claims this leaks, but the thread is already TERMINATED state
     // I think it can be resolved, but for now ...
-    if (threadName.startsWith("executeInOrderTest") || threadName.startsWith("testStress")) {
+    if (threadName.startsWith("executeInOrderTest") || threadName.startsWith("testStress") || threadName.startsWith("testLockWhenQueueIsFull_test")) {
       return true;
     }