문제

I have an API centric application (/api/v1/users) it simply return all users restfully with JSON format.

My problem is, if I call that route on the controller, it returns "Timeout::Error" What is the problem?

class BaseController < ApplicationController
  def index
    return HTTParty.get('http://localhost:3000/api/v1/users').body
  end
end

Update

  • users_controller.rb (/api/v1/users)
  • application_controller.rb

https://gist.github.com/4359591

Logs

http://pastie.org/5565618

도움이 되었습니까?

해결책

If I understand correctly, you have an API end-point, at /api/v1/users, and your BaseController#index is calling that method?

If that is correct, inside the same rails process, and you are testing in development mode (as I can tell from your url), then you only have a single process running, which can only handle a single request at once. So if you start a request to BaseController#index, it will start another request to your own test-server, which is busy, and it will just wait until it times out.

If you want to test your API, I would look at a client tool like e.g. Postman.

HTH.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top