This commit is contained in:
Benoit Daloze 2022-08-29 18:18:20 +02:00
parent d694f320e4
commit b5358a98e6

View File

@ -173,7 +173,8 @@ class LeakChecker
def find_threads
Thread.list.find_all {|t|
t != Thread.current && t.alive?
t != Thread.current && t.alive? &&
!(t.thread_variable?(:"\0__detached_thread__") && t.thread_variable_get(:"\0__detached_thread__"))
}
end