fiddur (Fredrik Liljegren)
- Login: fiddur
- Email: fredrik@liljegren.org
- Registered on: 10/24/2012
- Last sign in: 03/17/2013
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
03/06/2013
-
06:31 PM Ruby Bug #7212: "stack level too deep" in Fiber much earlier in new versions of 1.9.3
- ko1 (Koichi Sasada) wrote:
> Do you use same compiler and compile option on each environments?
Yes, it was compiled with rvm with no options specified.
I'm sorry for the late answer, for some reason I didn't get any mail notif...
10/25/2012
-
01:56 PM Ruby Bug #7212: "stack level too deep" in Fiber much earlier in new versions of 1.9.3
- Here's a little more debug-info (not sure if it's needed, but anyhow...)
I tried the patch from #3187, increasing the stack size of fibers. I confirmed that the patch is working on a normal recursing method (without lambda block), in...
10/24/2012
-
11:21 PM Ruby Bug #7212 (Closed): "stack level too deep" in Fiber much earlier in new versions of 1.9.3
- I was getting SystemStackError in my application on some servers and not others; on all with 1.9.3-p286 and on some with p194, and on none with 1.9.2-head. I boiled it down to this:
def recursive(level = 0)
-> do
p "In bloc...