mirror of https://github.com/apache/lucene.git
Adding J9 sys thread to known threads. Interesting what this is triggered by (I can make it happen by calling mgmnt factory directly).
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1372301 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
80811d02f5
commit
d15dee8ca9
|
@ -30,6 +30,12 @@ public class QuickPatchThreadsFilter implements ThreadFilter {
|
|||
if (t.getName().equals("AWT-AppKit")) {
|
||||
return true;
|
||||
}
|
||||
|
||||
// J9 memory pool thread.
|
||||
if (t.getName().equals("MemoryPoolMXBean notification dispatcher")) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue