arjunmdas (arjun das)
- Login: arjunmdas
- Registered on: 02/25/2021
- Last sign in: 02/25/2021
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
03/04/2021
-
12:32 AM Ruby Bug #17666: Thread#join hangs when Fiber.set_scheduler is set
[xtkoba (Tee KOBAYASHI)](https://bugs.ruby-lang.org/users/48178) - Re-verified in the latest development. It's fixed. Thanks for the update.
.
03/02/2021
-
06:18 AM Ruby Bug #17666: Thread#join hangs when Fiber.set_scheduler is set
- Thanks again.
Just curious, how did you identify the right PR that fixed this? -
05:07 AM Ruby Bug #17666: Thread#join hangs when Fiber.set_scheduler is set
- Thanks a lot for confirming.
I will check the latest development version as well. Are you aware of any other tracking bug for this?
-
01:25 AM Ruby Bug #17666: Thread#join hangs when Fiber.set_scheduler is set
- ```ruby
class MockScheduler
def block(blocker, timeout = nil)
byebug
end
def close
byebug
end
def fiber(&block)
byebug
Fiber.new(blocking: false, &block).tap(&:resume)
end
def io_wait(io, e... -
12:55 AM Ruby Bug #17666 (Closed): Thread#join hangs when Fiber.set_scheduler is set
``` ruby
class MockScheduler
def block(blocker, timeout = nil)
byebug
end
def close
byebug
end
def fiber(&block)
byebug
Fiber.new(blocking: false, &block).tap(&:resume)
end
def io_wait(io...