multiwoven-integrations 0.1.44 → 0.1.46

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6afdc30d90ef04bf1c1d0f0ae9bc9c0c72005b9e805f0ee6dca950d6f50d375f
4
- data.tar.gz: 435ab301cc93008ed6e5009c1675eceba8ffafbf6dbe09c6629196f7c3a3a705
3
+ metadata.gz: 9d5c2974ca47dcb890b63d5cecc36dda1aa8ccb5aa18f47bd5290e0c93404cf1
4
+ data.tar.gz: 50f189b498ec3ea5c9231a1f6736997e1beaebd0f34334592495e13081aca1a8
5
5
  SHA512:
6
- metadata.gz: daa60409b147ab79fb35350a8abcf8756d063e6615b37512256b779fdfd86e91492ddd8a6b70835e4c51d066cafce9694f7e918787a061f0afe8d72949027a45
7
- data.tar.gz: a5f15cebfb4c8c85c1c9f8061d19a334769bf4cc4eaff430652b81f3be7d76359c2b0c82bd16a67eab178ab8999150bc5c469319e96a85c01c29f1b7f84ec041
6
+ metadata.gz: 382240e745a2e409d9892b714176f049f2b4b3f3e5a87b5c115db298dc3ab584bb3cafb2cb107f90e6adb3f17e09b3471b968f5ce26d6c019cffcd9a257cf1b7
7
+ data.tar.gz: 2c9e92a298cfab8e4287ebaa8e38c3d25a2d07e6cfffcea3785a73586abd1a7ad1f58ab5d5ee3f64005c2d08c0a5374fc03fcb6c84968db3af2c77301cd20226
@@ -80,7 +80,7 @@ module Multiwoven
80
80
  request_rate_limit: catalog_json["request_rate_limit"] || 60,
81
81
  request_rate_limit_unit: catalog_json["request_rate_limit_unit"] || "minute",
82
82
  request_rate_concurrency: catalog_json["request_rate_concurrency"] || 10,
83
- schema_mode: catalog_json["schema_mode"] || ["schema"]
83
+ schema_mode: catalog_json["schema_mode"] || "schema"
84
84
  )
85
85
  end
86
86
 
@@ -66,15 +66,12 @@ module Multiwoven::Integrations::Destination
66
66
  connection_specification = sync_config.destination.connection_specification.with_indifferent_access
67
67
  with_sftp_client(connection_specification) do |sftp|
68
68
  files = sftp.dir.glob(connection_specification[:destination_path], "*")
69
-
70
69
  files.each do |file|
71
70
  sftp.remove!(File.join(connection_specification[:destination_path], file.name))
72
71
  end
73
- if sftp.dir.entries(connection_specification[:destination_path]).size == 2
74
- control_message("Successfully cleared data.", "succeeded")
75
- else
76
- control_message("Failed to clear data.", "failed")
77
- end
72
+ return control_message("Successfully cleared data.", "succeeded") if sftp.dir.entries(connection_specification[:destination_path]).size <= 2
73
+
74
+ return control_message("Failed to clear data.", "failed")
78
75
  end
79
76
  rescue StandardError => e
80
77
  control_message(e.message, "failed")
@@ -2,7 +2,7 @@
2
2
  "request_rate_limit": 600,
3
3
  "request_rate_limit_unit": "minute",
4
4
  "request_rate_concurrency": 10,
5
- "schema_mode": ["schemaless"],
5
+ "schema_mode": "schemaless",
6
6
  "streams": [
7
7
  {
8
8
  "name": "sftp",
@@ -147,7 +147,7 @@ module Multiwoven
147
147
  attribute? :request_rate_limit, Types::Integer.default(60)
148
148
  attribute? :request_rate_limit_unit, RequestRateLimitingUnit
149
149
  attribute? :request_rate_concurrency, Types::Integer.default(10)
150
- attribute? :schema_mode, Types::Array.of(SchemaMode).optional.default(["schema"])
150
+ attribute? :schema_mode, Types::String.optional.default("schema")
151
151
 
152
152
  def to_multiwoven_message
153
153
  MultiwovenMessage.new(
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Multiwoven
4
4
  module Integrations
5
- VERSION = "0.1.44"
5
+ VERSION = "0.1.46"
6
6
 
7
7
  ENABLED_SOURCES = %w[
8
8
  Snowflake
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: multiwoven-integrations
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.44
4
+ version: 0.1.46
5
5
  platform: ruby
6
6
  authors:
7
7
  - Subin T P
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-03-25 00:00:00.000000000 Z
11
+ date: 2024-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport