multiwoven-integrations 0.15.2 → 0.15.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 061b82366f90672a1e23dfb7d57d84223892f5226b939de3b656524de8593bc0
4
- data.tar.gz: 1546c389f0fe36c4f7909a06880759b3fb1af1850c79859b112abdfdf4418a93
3
+ metadata.gz: 01e55a5a02e62950e366a99127c0531d994ba547895a09641d06f77df462b7f3
4
+ data.tar.gz: 0d7194c4d0b7f823607acd0f8e5ace01b381090707811599e126941b2de8404a
5
5
  SHA512:
6
- metadata.gz: 2e0cc7cff7a29f20e0f02ed2afd72cffa313844b4dc84a5ad63fd49c48a209ef3ccd3fc06e8db32670b0e48c3e81a55740cdaa57f31d73a25716526df384ffd9
7
- data.tar.gz: d92a6a98532e3e9a820b18f2c1dabc67aa791b6bdc0ab088fd33bc2f086b55947dec475d07a979bbdc7bd86d8915708a811157229b85bc4d58ae744e9be9f03c
6
+ metadata.gz: 144ac424ba8610d81af8f4e6e2b9fb7393960557db4ed89f7a2405c9b6649bd114a160e477d8e803fb774654b21e083bdf4f6b5fa65b79cfc21c3da7857c5542
7
+ data.tar.gz: bfa1840c3d5beffd213b7de986d21e97365a621b8e6839aa0dfec32fcd316201a6da30f9a4fe4ae03bb810371f439420b9000d6e18e02cdd12edb2396bb1468d
@@ -10,8 +10,11 @@ module Multiwoven
10
10
  http.use_ssl = (uri.scheme == "https")
11
11
 
12
12
  # Set timeout if provided
13
- http.open_timeout = config[:timeout] if config[:timeout]
14
- http.read_timeout = config[:timeout] if config[:timeout]
13
+ if config[:timeout]
14
+ timeout_value = config[:timeout].to_f
15
+ http.open_timeout = timeout_value
16
+ http.read_timeout = timeout_value
17
+ end
15
18
 
16
19
  request = build_request(method, uri, payload, headers)
17
20
  http.request(request)
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Multiwoven
4
4
  module Integrations
5
- VERSION = "0.15.2"
5
+ VERSION = "0.15.3"
6
6
 
7
7
  ENABLED_SOURCES = %w[
8
8
  Snowflake
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: multiwoven-integrations
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.2
4
+ version: 0.15.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Subin T P