Remove note about Azure ARM plugin (#40219)

Relates to #22679
This commit is contained in:
Yannick Welsch 2019-03-20 16:31:03 +01:00
parent efaf95628b
commit 8f84f455c3
2 changed files with 2 additions and 4 deletions

View File

@ -4,9 +4,7 @@
The Azure Classic Discovery plugin uses the Azure Classic API to identify the The Azure Classic Discovery plugin uses the Azure Classic API to identify the
addresses of seed hosts. addresses of seed hosts.
// TODO: Link to ARM plugin when ready deprecated[5.0.0, This plugin will be removed in the future]
// See issue https://github.com/elastic/elasticsearch/issues/19146
deprecated[5.0.0, Use coming Azure ARM Discovery plugin instead]
:plugin_name: discovery-azure-classic :plugin_name: discovery-azure-classic
include::install_remove.asciidoc[] include::install_remove.asciidoc[]

View File

@ -48,7 +48,7 @@ public class AzureDiscoveryPlugin extends Plugin implements DiscoveryPlugin {
public AzureDiscoveryPlugin(Settings settings) { public AzureDiscoveryPlugin(Settings settings) {
this.settings = settings; this.settings = settings;
deprecationLogger.deprecated("azure classic discovery plugin is deprecated. Use azure arm discovery plugin instead"); deprecationLogger.deprecated("azure classic discovery plugin is deprecated.");
logger.trace("starting azure classic discovery plugin..."); logger.trace("starting azure classic discovery plugin...");
} }