net / http挂起请求导致失败 - RoR

时间:2013-09-23 09:54:47

标签: ruby-on-rails ruby net-http

我有一些代码检查URL列表的响应代码并将它们呈现回来 - 我遇到了一些挂起的URL导致应用程序根本无法加载的问题。如何在30秒后让请求放弃,并检查下一个URL,将跳过的URL标记为失败。

下面是我目前的代码; (型号/ status.rb)

 require "net/http"
 require "uri"

 class Status
def initialize(url)
    @url = url
end

def get_status
    response.code
end

def active?
    ["200","203","302"].include?(get_status) ? true : false
end

private

def lookup
    URI.parse(@url)
end
def http
    Net::HTTP.new(lookup.host, lookup.port)
end
def request
    Net::HTTP::Get.new(lookup.request_uri)
end
def response
    http.request(request)
end
end

(控制器/ welcome_controller.rb)

class WelcomeController < ApplicationController
def index
@syndication = [
["http://v1.syndication.u01.example.uk/organisations?apikey=bbccdd", "U.INT 01"],
["http://v1.syndication.u02.example.uk/organisations?apikey=bbccdd", "U.INT 02"],


].collect { |url| logger.info("Boom #{url[0]}"); ["#{url[1]} (#{url[0]})", Status.new(url[0]).active?] }

 end

 end

1 个答案:

答案 0 :(得分:0)

得到答案..

将以下内容添加到我的“def get_status”

def get_status 
    begin 
        response.code
    rescue Exception => e
        Rails.logger.info("Error #{e}")
    end
end

这记录了错误并转到下一个网址