fluent-plugin-rabbitmq-typed 0.0.9 → 0.0.10

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: bed230febcf509a37c75c2a509479f81b352eaa6ae5135a1bb8af26115e6cbe4
4
- data.tar.gz: 07c947a4fa80311aa4c3621938c42999eeb6b5dfde1917dba388411836ba5ae5
3
+ metadata.gz: 1a74ed9e88d8eb158c5c62982b9e01607c2b418ac99febd119c13513e9fd71be
4
+ data.tar.gz: c4cb8087142d99142cd7ecb9775f13abdc84fa40bd206e8bb3c102213b003a53
5
5
  SHA512:
6
- metadata.gz: 2330bc492e99aac8326f1e442b3765ca045549fa163f02eb24de874456c4a68d4bfc7b91e6e1dfea554ea8338671b1d5c23bf39aa4f9e8c12080fd5e0c4d6fa8
7
- data.tar.gz: 035c1316f6c5f45420a3a8661f69511ad8a13ddd7f735f8ac87a7df1562a87ef90cf9f821b58571a36e6623ab6ca8072cced74687dd2de5c341f1b933aa6b42d
6
+ metadata.gz: 281152a7fbbb75e5bd71278e16f59865128a2b2f2008355463fc5fe0a3bae2fe8815747861c114d6f6acd111bd4430bec20065d7b4491a839b578ab6470da5c2
7
+ data.tar.gz: 23c9ddb5fa47be4dccbdbc2a19c08d8f8d30aad446b1b46538d0ca90fa06f96a3140eb4b47ec0d022212530fbbfe2ce280acee9612ae3cdfc8f0e002dcb6b071
@@ -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-typed"
6
- spec.version = "0.0.9"
6
+ spec.version = "0.0.10"
7
7
  spec.authors = ["NTT Communications"]
8
8
  spec.email = ["masaki.matsushita@ntt.com"]
9
9
 
@@ -125,7 +125,8 @@ module Fluent::Plugin
125
125
  @bunny_exchange.bind(@exchange_to_bind, routing_key: @exchange_routing_key)
126
126
  end
127
127
  end
128
- queue_arguments = {"x-message-ttl" => @ttl} if @ttl
128
+ queue_arguments = Hash.new
129
+ queue_arguments["x-message-ttl"] = @ttl if @ttl
129
130
  queue_arguments["x-queue-type"] = @x_type if @x_type
130
131
  queue = channel.queue(
131
132
  @queue,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-rabbitmq-typed
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - NTT Communications