gpt4 book ai didi

ruby - 法拉第 (Ruby) 超时错误

转载 作者:太空宇宙 更新时间:2023-11-03 18:26:42 26 4
gpt4 key购买 nike

我正在尝试使用 Faraday 将路由 A(Sinatra 应用程序)中生成的小有效载荷放入路由 B。所以代码基本上是这样的:

post "/routeA" do
foo.save
foo_id = foo.id
conn = Faraday.new(:url => "http://localhost:3001/routeB" ) do |builder|
builder.request :url_encoded
builder.response :logger
builder.adapter :net_http
end

resp = conn.put do |req|
req.url '/routeB'
req.headers['Content-Type'] = 'application/json'
req.body = {:id => foo_id }.to_json
req.options = {
#:timeout => 5, # see below, these aren't the problem
#:open_timeout => 2
}
end

# never gets here b/c Timeout error always thrown
STDERR.puts resp.body
end

put "/routeB" do
# for test purposes just log output
STDERR.puts request.body.read.to_s.inspect
status 202
body '{"Ok"}'
end

问题是它总是抛出超时错误(我在没有超时选项的情况下运行,但使用上面显示的选项 -> 相同的结果)。但是,日志显示请求正在通过:

I, [2012-03-24T16:56:13.241329 #17673]  INFO -- : put http://localhost:3001/routeB
D, [2012-03-24T16:56:13.241427 #17673] DEBUG -- request: Content-Type: "application/json"
#<Faraday::Error::TimeoutError>
DEBUG - POST (60.7987ms) /routeA - 500 Internal Server Error
"{\"id\":7}"
DEBUG - PUT (0.0117ms) /routeB - 202 Accepted

不确定如何克服超时错误?任何见解将不胜感激。谢谢。

最佳答案

问题是应用程序在完成当前请求之前无法响应另一个请求。也就是说,当您在 /routeB 上发出 PUT 请求时,应用程序会收到请求,并等待当前请求 (/routeA) 完成。但是请求不会完成,因为它正在等待 /routeB 的响应。我认为这是导致超时错误的原因。

关于ruby - 法拉第 (Ruby) 超时错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9856208/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com