fluent-plugin-aws-sqs 1.0.5 → 1.0.6
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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/fluent/plugin/{in-sqs.rb → in_sqs.rb} +0 -0
- data/lib/fluent/plugin/version.rb +1 -1
- data/tests/{test_in-sqs.rb → test_in_sqs.rb} +1 -5
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b592552c2801fce34dd2dd904c9db8e4fd8e92f3b06cd2bd2a991149c1c42b49
|
|
4
|
+
data.tar.gz: 5249602db60a04f94a20b4351826b57cec56fbf030d1efde7ac477a8beabf1ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8c3084dab9e4928514fff7d83768283dd7be6c85fe712ac6c4ed0d808bf9c96246b98de13792e77e856b60e2248b62b1823eb2ac92b4f228b74c9968d8e868b2
|
|
7
|
+
data.tar.gz: f70d7117596d4b20c5cdcd4b61ec59f80511f08aa4cc3ab8803eb21cc271a4d822b6935f292b7438abdf851e6875eb047af53940fa2e7d8bb91b35682e966c5a
|
data/Gemfile.lock
CHANGED
|
File without changes
|
|
@@ -2,15 +2,13 @@ require "test-unit"
|
|
|
2
2
|
require "fluent/test"
|
|
3
3
|
require "fluent/test/driver/input"
|
|
4
4
|
require "fluent/test/helpers"
|
|
5
|
-
require "./lib/fluent/plugin/
|
|
5
|
+
require "./lib/fluent/plugin/in_sqs.rb"
|
|
6
6
|
|
|
7
7
|
class InSqsTest < Test::Unit::TestCase
|
|
8
8
|
include Fluent::Test::Helpers
|
|
9
9
|
|
|
10
10
|
# default configuration for tests
|
|
11
11
|
DEFAULT_VALID_CONFIG = %[
|
|
12
|
-
aws_key_id test_aws_key_id
|
|
13
|
-
aws_sec_key test_aws_sec_key
|
|
14
12
|
tag test_tag
|
|
15
13
|
sqs_url http://sqs-url.com
|
|
16
14
|
]
|
|
@@ -43,8 +41,6 @@ class InSqsTest < Test::Unit::TestCase
|
|
|
43
41
|
test 'params are set correctly' do
|
|
44
42
|
d = create_driver
|
|
45
43
|
assert_equal "test_tag", d.instance.tag
|
|
46
|
-
assert_equal "test_aws_sec_key", d.instance.aws_sec_key
|
|
47
|
-
assert_equal "test_aws_key_id", d.instance.aws_key_id
|
|
48
44
|
assert_equal "eu-central-1", d.instance.region
|
|
49
45
|
assert_equal "http://sqs-url.com", d.instance.sqs_url
|
|
50
46
|
assert_equal 0.1, d.instance.receive_interval
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-aws-sqs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shai Moria
|
|
@@ -113,9 +113,9 @@ files:
|
|
|
113
113
|
- Rakefile
|
|
114
114
|
- VERSION
|
|
115
115
|
- fluent-plugin-aws-sqs.gemspec
|
|
116
|
-
- lib/fluent/plugin/
|
|
116
|
+
- lib/fluent/plugin/in_sqs.rb
|
|
117
117
|
- lib/fluent/plugin/version.rb
|
|
118
|
-
- tests/
|
|
118
|
+
- tests/test_in_sqs.rb
|
|
119
119
|
homepage: https://github.com/zooz/fluent-plugin-aws-sqs
|
|
120
120
|
licenses:
|
|
121
121
|
- Apache-2.0
|