私はAPI中心のアプリケーション(/ api / v1 / users)を持っており、JSON形式ですべてのユーザーを安らかに返します。
私の問題は、コントローラーでそのルートを呼び出すと、「Timeout::Error」が返されることです。問題は何ですか。
class BaseController < ApplicationController
def index
return HTTParty.get('http://localhost:3000/api/v1/users').body
end
end
アップデート
- users_controller.rb(/ api / v1 / users)
- application_controller.rb
https://gist.github.com/4359591
ログ