mirror of https://github.com/apache/lucene.git
Ignore process reaper (forked subprocess on unixish systems).
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1372731 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d4b66af3b3
commit
46b8a90c11
|
@ -35,6 +35,11 @@ public class QuickPatchThreadsFilter implements ThreadFilter {
|
|||
if (t.getName().equals("MemoryPoolMXBean notification dispatcher")) {
|
||||
return true;
|
||||
}
|
||||
|
||||
// forked process reaper on Unixish systems
|
||||
if (t.getName().equals("process reaper")) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue