Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to start my app and it's still "loading". It worked in the morning, but now it doesn't .

I tryied with other ports, switching to a stable branch, restarting computer, but nothing seems to work. On other apps, it's working. If I stop de server this is the error I see(in the browser)

Attempt to unlock a mutex which is locked by another thread
WEBrick/1.3.1 (Ruby/1.9.3/2012-11-10) at localhost:3000
share|improve this question

1 Answer

Had the same problem lately. It looks like there are two view partials calling each other in a loop.

Go to the view which is called when you visit the root path and try commenting out any calls to 'render'.

<%#= render ... %>

If your page works now (with missing parts), uncomment that line, have a look at the partial you are trying to render and repeat the process with 'render ...' in that one.

Finally you should be able to make out what caused the loop.

share|improve this answer
1  
This was not my case exactly, but it's the same problem. I had a function that generates a model with some validation, if the model failed the validation on save, the function tries again. There was one validation which was never passed, so the webrick went in an infinite cycle causing the application to freeze, but thanks for your answer :) – VladC Feb 23 at 20:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.