Skip to content

Commit 1a2bb10

Browse files
authored
Merge pull request #54 from mashhurs/tls-cert-pwd-type-change
Remove unused absolete TLS params.
2 parents 565fd22 + 1e5eafb commit 1a2bb10

File tree

5 files changed

+6
-9
lines changed

5 files changed

+6
-9
lines changed

.ci/integration/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
set -ex
66

77
# runs integration tests, assuming that a rabbitmq server is running on ${RABBITMQ_HOST} (if provided) or on localhost.
8-
jruby -rbundler/setup -S rspec --format=documentation --tag integration
8+
bundle exec rspec spec --tag integration --format=documentation

.ci/unit/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
set -ex
66

77
# runs unit-test specs
8-
jruby -rbundler/setup -S rspec --format=documentation
8+
bundle exec rspec spec --format=documentation

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 7.3.2
2+
- Change `tls_certificate_password` type to `password` to protect from leaks in the logs [#54](https://github.com/logstash-plugins/logstash-integration-rabbitmq/pull/54)
3+
14
## 7.3.1
25
- DOCS: clarify the availability and cost of using the `metadata_enabled` option [#52](https://github.com/logstash-plugins/logstash-integration-rabbitmq/pull/52)
36

lib/logstash/plugin_mixins/rabbitmq_connection.rb

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,6 @@ def setup_rabbitmq_connection_config
8181
# Passive queue creation? Useful for checking queue existance without modifying server state
8282
config :passive, :validate => :boolean, :default => false
8383

84-
# TLS certifcate path
85-
config :tls_certificate_path, :validate => :path, :obsolete => "This setting is obsolete. Use ssl_certificate_path instead"
86-
87-
# TLS certificate password
88-
config :tls_certificate_password, :validate => :string, :obsolete => "This setting is obsolete. Use ssl_certificate_password instead"
89-
9084
# Extra queue arguments as an array.
9185
# To make a RabbitMQ queue mirrored, use: `{"x-ha-policy" => "all"}`
9286
config :arguments, :validate => :array, :default => {}

logstash-integration-rabbitmq.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = 'logstash-integration-rabbitmq'
3-
s.version = '7.3.1'
3+
s.version = '7.3.2'
44
s.licenses = ['Apache License (2.0)']
55
s.summary = "Integration with RabbitMQ - input and output plugins"
66
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline "+

0 commit comments

Comments
 (0)