logstash-mixin-rabbitmq_connection 4.3.1-java → 5.0.0-java
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/.travis.yml +4 -2
- data/CHANGELOG +3 -0
- data/lib/logstash/plugin_mixins/rabbitmq_connection.rb +5 -6
- data/logstash-mixin-rabbitmq_connection.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 369b7b8885462316ac663ab74a818172be5717eb
|
|
4
|
+
data.tar.gz: 668e13d9c466042d75e471ec984c352f5dfe539e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5ab6a522eb401c004e1e13d7fd766e03ad2d32a2ac8b733e02cfc26c819a42a9c11603d3e7b04e5d409641f58b48ad0e2be19e98ae9f2d992ce3fe3b7783188c
|
|
7
|
+
data.tar.gz: 2ed7a7060b2d521ea6484665ca87d79fef6fae8a897381a7be1cd111295c151f8a240fc1ac6cf2f507276392d45b1962ed3335a6703b6d0ca712ab02652a9a16
|
data/.travis.yml
CHANGED
data/CHANGELOG
CHANGED
|
@@ -64,8 +64,7 @@ module LogStash
|
|
|
64
64
|
# Password for the encrypted PKCS12 (.p12) certificate file specified in ssl_certificate_path
|
|
65
65
|
config :ssl_certificate_password, :validate => :string
|
|
66
66
|
|
|
67
|
-
|
|
68
|
-
config :debug, :validate => :boolean, :default => false, :deprecated => "Use the logstash --debug flag for this instead."
|
|
67
|
+
config :debug, :validate => :boolean, :obsolete => "Use the logstash --debug flag for this instead."
|
|
69
68
|
|
|
70
69
|
# Set this to automatically recover from a broken connection. You almost certainly don't want to override this!!!
|
|
71
70
|
config :automatic_recovery, :validate => :boolean, :default => true
|
|
@@ -83,10 +82,10 @@ module LogStash
|
|
|
83
82
|
config :passive, :validate => :boolean, :default => false
|
|
84
83
|
|
|
85
84
|
# TLS certifcate path
|
|
86
|
-
config :tls_certificate_path, :validate => :path, :
|
|
85
|
+
config :tls_certificate_path, :validate => :path, :obsolete => "This setting is obsolete. Use ssl_certificate_path instead"
|
|
87
86
|
|
|
88
87
|
# TLS certificate password
|
|
89
|
-
config :tls_certificate_password, :validate => :string, :
|
|
88
|
+
config :tls_certificate_password, :validate => :string, :obsolete => "This setting is obsolete. Use ssl_certificate_password instead"
|
|
90
89
|
|
|
91
90
|
# Extra queue arguments as an array.
|
|
92
91
|
# To make a RabbitMQ queue mirrored, use: `{"x-ha-policy" => "all"}`
|
|
@@ -121,8 +120,8 @@ module LogStash
|
|
|
121
120
|
if @ssl
|
|
122
121
|
s[:tls] = @ssl_version
|
|
123
122
|
|
|
124
|
-
cert_path = @ssl_certificate_path
|
|
125
|
-
cert_pass = @ssl_certificate_password
|
|
123
|
+
cert_path = @ssl_certificate_path
|
|
124
|
+
cert_pass = @ssl_certificate_password
|
|
126
125
|
|
|
127
126
|
if !!cert_path ^ !!cert_pass
|
|
128
127
|
raise LogStash::ConfigurationError, "RabbitMQ requires both ssl_certificate_path AND ssl_certificate_password to be set!"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
Gem::Specification.new do |s|
|
|
3
3
|
s.name = 'logstash-mixin-rabbitmq_connection'
|
|
4
|
-
s.version = '
|
|
4
|
+
s.version = '5.0.0'
|
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
|
6
6
|
s.summary = "Common functionality for RabbitMQ plugins"
|
|
7
7
|
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-mixin-rabbitmq_connection
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 5.0.0
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-08-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|