You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 9, 2022. It is now read-only.
Something like:
HTTP_CONNECTION_READ_TIMEOUT = ENV['HTTP_CONNECTION_READ_TIMEOUT'] ? ENV['HTTP_CONNECTION_READ_TIMEOUT'].to_i : 300
If you wanted to use the ENV vars.
If you meant from properties files then it would be something like:
MLClient.rb:
@http = Roxy::Http.new({
:logger => logger
:http_connection_read_timeout => options[:http_connection_read_timeout]
})
You would just have to pass the timeout around to a few places to get it into the Roxy::Http class.
The text was updated successfully, but these errors were encountered: