Replace/remove references to defunct freenode instance (#16873)

The preferred channel for communication about LS is the elastic discussion
forum, this commit updates the source code and readme files to reflect that.
This commit is contained in:
Cas Donoghue 2025-01-10 14:28:35 -08:00 committed by GitHub
parent ae8ad28aaa
commit 356ecb3705
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 12 additions and 13 deletions

View file

@ -20,7 +20,6 @@ supported platforms, from [downloads page](https://www.elastic.co/downloads/logs
- [Logstash Forum](https://discuss.elastic.co/c/logstash) - [Logstash Forum](https://discuss.elastic.co/c/logstash)
- [Logstash Documentation](https://www.elastic.co/guide/en/logstash/current/index.html) - [Logstash Documentation](https://www.elastic.co/guide/en/logstash/current/index.html)
- [#logstash on freenode IRC](https://webchat.freenode.net/?channels=logstash)
- [Logstash Product Information](https://www.elastic.co/products/logstash) - [Logstash Product Information](https://www.elastic.co/products/logstash)
- [Elastic Support](https://www.elastic.co/subscriptions) - [Elastic Support](https://www.elastic.co/subscriptions)

View file

@ -13,7 +13,7 @@ Logstash provides infrastructure to automatically generate documentation for thi
## Need Help? ## Need Help?
Need help? Try #logstash on freenode IRC or the https://discuss.elastic.co/c/logstash discussion forum. Need help? Try the https://discuss.elastic.co/c/logstash discussion forum.
## Developing ## Developing

View file

@ -13,7 +13,7 @@ Logstash provides infrastructure to automatically generate documentation for thi
## Need Help? ## Need Help?
Need help? Try #logstash on freenode IRC or the https://discuss.elastic.co/c/logstash discussion forum. Need help? Try the https://discuss.elastic.co/c/logstash discussion forum.
## Developing ## Developing

View file

@ -13,7 +13,7 @@ Logstash provides infrastructure to automatically generate documentation for thi
## Need Help? ## Need Help?
Need help? Try #logstash on freenode IRC or the https://discuss.elastic.co/c/logstash discussion forum. Need help? Try the https://discuss.elastic.co/c/logstash discussion forum.
## Developing ## Developing

View file

@ -13,7 +13,7 @@ Logstash provides infrastructure to automatically generate documentation for thi
## Need Help? ## Need Help?
Need help? Try #logstash on freenode IRC or the https://discuss.elastic.co/c/logstash discussion forum. Need help? Try the https://discuss.elastic.co/c/logstash discussion forum.
## Developing ## Developing

View file

@ -123,14 +123,14 @@ module LogStash::Config::Mixin
if opts && opts[:deprecated] if opts && opts[:deprecated]
extra = opts[:deprecated].is_a?(String) ? opts[:deprecated] : "" extra = opts[:deprecated].is_a?(String) ? opts[:deprecated] : ""
extra.gsub!("%PLUGIN%", self.class.config_name) extra.gsub!("%PLUGIN%", self.class.config_name)
self.deprecation_logger.deprecated("You are using a deprecated config setting " + self.deprecation_logger.deprecated(
"#{name.inspect} set in #{self.class.config_name}. " + "You are using a deprecated config setting #{name.inspect} set in " \
"Deprecated settings will continue to work, " + "#{self.class.config_name}. Deprecated settings will continue to work, " \
"but are scheduled for removal from logstash " + "but are scheduled for removal from logstash in the future. #{extra} " \
"in the future. #{extra} If you have any questions " + "If you have any questions about this, please ask it on the " \
"about this, please visit the #logstash channel " + "https://discuss.elastic.co/c/logstash discussion forum",
"on freenode irc.", {}) {}
)
end end
if opts && opts[:obsolete] if opts && opts[:obsolete]