You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mark previously deprecated SSL settings as obsolete (#149)
* Mark previously deprecated SSL settings as obsolete
- SSL settings that were marked deprecated in version `5.6.0` are now marked obsolete, and will prevent the plugin from starting.
- These settings are:
- `cacert`, which should be replaced by `ssl_certificate_authorities`
- `client_cert`, which should be replaced by `ssl_certificate`
- `client_key`, which should be replaced by `ssl_key`
- `keystore`, which should be replaced by `ssl_keystore_path`
- `keystore_password`, which should be replaced by `ssl_keystore_password`
- `keystore_type`, which should be replaced by `ssl_keystore_password`
- `truststore`, which should be replaced by `ssl_truststore_path>`
- `truststore_password`, which should be replaced by `ssl_truststore_password`
- `truststore_type`, which should be replaced by `ssl_truststore_type`
---------
Co-authored-by: Cas Donoghue <[email protected]>
- Added new `ssl_enabled` setting for enabling/disabling the SSL configurations [#146](https://github.com/logstash-plugins/logstash-input-http_poller/pull/146)
Copy file name to clipboardExpand all lines: logstash-input-http_poller.gemspec
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
Gem::Specification.newdo |s|
2
2
s.name='logstash-input-http_poller'
3
-
s.version='5.6.0'
3
+
s.version='6.0.0'
4
4
s.licenses=['Apache License (2.0)']
5
5
s.summary="Decodes the output of an HTTP API into events"
6
6
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"
it"emits an error about the setting `#{settings[:name]}` now being obsolete and provides guidance to use `#{settings[:canonical_name]}`"do
584
+
error_text=/The setting `#{settings[:name]}` in plugin `http_poller` is obsolete and is no longer available. Use `#{settings[:canonical_name]}` instead/i
0 commit comments