Hack to avoid leak checker

This commit is contained in:
Nobuyoshi Nakada 2022-05-25 18:47:49 +09:00
parent e77e233935
commit 983f2688db
No known key found for this signature in database
GPG Key ID: 7CD2805BFA3770C6
1 changed files with 2 additions and 1 deletions

View File

@ -182,7 +182,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