浏览代码

Fix nil error when no DNS addresses are found for host (#9379)

master
Eugen Rochko 5 年前
committed by GitHub
父节点
当前提交
43c311b3a1
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. +5
    -1
      app/lib/request.rb

+ 5
- 1
app/lib/request.rb 查看文件

@@ -163,7 +163,11 @@ class Request
end
end

raise outer_e if outer_e
if outer_e
raise outer_e
else
raise SocketError, "No address for #{host}"
end
end

alias new open


正在加载...
取消
保存