Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(CE): update timeout in http client #472

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions integrations/lib/multiwoven/integrations/core/http_client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@ def request(url, method, payload: nil, headers: {}, config: {})
http.use_ssl = (uri.scheme == "https")

# Set timeout if provided
http.open_timeout = config[:timeout] if config[:timeout]
http.read_timeout = config[:timeout] if config[:timeout]
if config[:timeout]
timeout_value = config[:timeout].to_f
http.open_timeout = timeout_value
http.read_timeout = timeout_value
end

request = build_request(method, uri, payload, headers)
http.request(request)
Expand Down
2 changes: 1 addition & 1 deletion integrations/lib/multiwoven/integrations/rollout.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module Multiwoven
module Integrations
VERSION = "0.15.2"
VERSION = "0.15.3"

ENABLED_SOURCES = %w[
Snowflake
Expand Down
Loading