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 have code like:

Thread.new do
  builder = Rack::Builder.new do
    map('/'){ run Server }
  end
  Rack::Handler::Thin.run builder, :Port => 8585
end
#how do i detect, that Server is running here (or wait for it)

How can i detect, that Server is running and able to receive requests?

Thanks

share|improve this question

2 Answers

up vote 1 down vote accepted

You can use the defined? method to check for this, e.g.

if defined? Rack::Handler::Thin
   # We're running under Thin. Do stuff.
else
   # nope :(
end
share|improve this answer

use curl in terminal. curl http://yourapp.com:8585/ If this returns the page at '/', then the server is up.

share|improve this answer
yeah, i used that solution, but does not seem to be elegant – Ondra May 18 '12 at 9:37

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.