Merge pull request #4057 from take-cheeze/use_thread_pass

Use `Thread.pass` instead of sleeping.
This commit is contained in:
Yukihiro "Matz" Matsumoto
2018-06-22 10:19:16 +09:00
committed by GitHub
+1 -1
View File
@@ -562,7 +562,7 @@ class RakeApp
end
def wait_process
sleep 0.1
Thread.pass
exited = []
$rake_fiber_table.each do |pid, v|