Skip to content

Commit 1cc3a65

Browse files
authored
Merge pull request #208 from alexcams/18314-remove-duplicated-deprecation-log-entries
Remove duplicated deprecation log entry
2 parents 71afae2 + 0da2a76 commit 1cc3a65

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 12.0.1
2+
- Remove duplicated deprecation log entry [#208](https://github.com/logstash-plugins/logstash-integration-kafka/pull/208)
3+
14
## 12.0.0
25
- Update kafka client to 4.1.0 and transitive dependencies [#205](https://github.com/logstash-plugins/logstash-integration-kafka/pull/205)
36
- Breaking Change: partitioner options `default` and `uniform_sticky` are removed

lib/logstash/plugin_mixins/kafka/common.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@ def set_sasl_config(props)
5555
def reassign_dns_lookup
5656
if @client_dns_lookup == "default"
5757
@client_dns_lookup = "use_all_dns_ips"
58-
logger.warn("client_dns_lookup setting 'default' value is deprecated, forced to 'use_all_dns_ips', please update your configuration")
59-
deprecation_logger.deprecated("Deprecated value `default` for `client_dns_lookup` option; use `use_all_dns_ips` instead.")
58+
deprecation_logger.deprecated("Deprecated value `default` for `client_dns_lookup` option; please update your configuration to use `use_all_dns_ips` instead.")
6059
end
6160
end
6261

logstash-integration-kafka.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-kafka'
3-
s.version = '12.0.0'
3+
s.version = '12.0.1'
44
s.licenses = ['Apache-2.0']
55
s.summary = "Integration with Kafka - 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)