fluent-plugin-rabbitmq 0.1.3 → 0.1.4
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/fluent-plugin-rabbitmq.gemspec +1 -1
- data/lib/fluent/plugin/out_rabbitmq.rb +3 -1
- metadata +3 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 976e5bca2df7402adf2d3a8ec78776c18d875711901d9043c94c3ad0fec43143
|
4
|
+
data.tar.gz: 23428a5b0a5f80a75dfec1deb8c78c82e07618a9c51583ddb288d3aef7d6890a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed027afd80649651f7b64136fc97fb5f44b995c396a66e00fa11c6060822316a089b92ed1ede709a7e25b4ed1a5b4bbd1a6bfb51a176c0334d02ac9710345826
|
7
|
+
data.tar.gz: c873ad03d0233ca3b91bdef9fad657a2a654926ce035d9e5f7c92d630353ed85419bb1dc54d318d8fd714a483d71e7a270414e642988f94cb1b86ee289374f79
|
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |spec|
|
5
5
|
spec.name = "fluent-plugin-rabbitmq"
|
6
|
-
spec.version = "0.1.
|
6
|
+
spec.version = "0.1.4"
|
7
7
|
spec.authors = ["NTT Communications"]
|
8
8
|
spec.email = ["masaki.matsushita@ntt.com"]
|
9
9
|
|
@@ -52,6 +52,7 @@ module Fluent::Plugin
|
|
52
52
|
config_param :exchange, :string
|
53
53
|
config_param :exchange_type, :string
|
54
54
|
config_param :exchange_durable, :bool, default: false
|
55
|
+
config_param :exchange_no_declare, :bool, default: false
|
55
56
|
|
56
57
|
config_param :persistent, :bool, default: false
|
57
58
|
config_param :routing_key, :string, default: nil
|
@@ -125,7 +126,8 @@ module Fluent::Plugin
|
|
125
126
|
@channel = @bunny.create_channel
|
126
127
|
exchange_options = {
|
127
128
|
durable: @exchange_durable,
|
128
|
-
auto_delete: @exchange_auto_delete
|
129
|
+
auto_delete: @exchange_auto_delete,
|
130
|
+
no_declare: @exchange_no_declare
|
129
131
|
}
|
130
132
|
@bunny_exchange = Bunny::Exchange.new(@channel, @exchange_type, @exchange, exchange_options)
|
131
133
|
end
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-rabbitmq
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- NTT Communications
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-02-01 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: bundler
|
@@ -129,7 +128,6 @@ homepage: https://github.com/nttcom/fluent-plugin-rabbitmq
|
|
129
128
|
licenses:
|
130
129
|
- Apache-2.0
|
131
130
|
metadata: {}
|
132
|
-
post_install_message:
|
133
131
|
rdoc_options: []
|
134
132
|
require_paths:
|
135
133
|
- lib
|
@@ -144,8 +142,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
144
142
|
- !ruby/object:Gem::Version
|
145
143
|
version: '0'
|
146
144
|
requirements: []
|
147
|
-
rubygems_version: 3.
|
148
|
-
signing_key:
|
145
|
+
rubygems_version: 3.6.3
|
149
146
|
specification_version: 4
|
150
147
|
summary: fluent plugin for rabbitmq (AMQP)
|
151
148
|
test_files: []
|