mattbrictson (Matt Brictson)
- Login: mattbrictson
- Email: redmine@mattbrictson.com
- Registered on: 05/14/2015
- Last sign in: 01/07/2016
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
05/14/2015
-
06:18 PM Ruby Bug #10871: Sclass thread unsafe due to CREF sharing
- I recently opened bug #11153 which may be related. When using threads, methods defined inside `class << obj` sometimes fail to work. Feel free to close mine as a duplicate if it is the same underlying cause. In any case I would also appr...
-
06:17 PM Ruby Bug #11153: Defining singleton methods using `class << self` sometimes fails when using threads
- This may be a duplicate of #10871.
-
04:30 AM Ruby Bug #11153 (Closed): Defining singleton methods using `class << self` sometimes fails when using threads
- Defining singleton methods using this syntax occasionally produces unexpected results when run in parallel with multiple threads:
~~~
class << obj
def method_one
end
def method_two
end
end
~~~
Sometimes not all of th...