mirror of
https://github.com/lostisland/faraday.git
synced 2025-10-06 00:03:36 -04:00
599 B
599 B
layout | title | permalink | hide |
---|---|---|---|
page | HTTPClient Adapter | /adapters/httpclient | true |
This Adapter uses the httpclient gem to make HTTP requests.
conn = Faraday.new(...) do |f|
f.adapter :httpclient do |client|
# yields HTTPClient
client.keep_alive_timeout = 20
client.ssl_config.timeout = 25
end
end