From 74c289bd38b0c420783a8fd63b232ae3591b9fdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francisco=20Fern=C3=A1ndez=20Casta=C3=B1o?= Date: Wed, 23 Jun 2021 12:11:38 +0200 Subject: [PATCH] Fix compilation --- .../deprecation/CcrAutoFollowedSystemIndicesChecker.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/plugin/deprecation/src/main/java/org/elasticsearch/xpack/deprecation/CcrAutoFollowedSystemIndicesChecker.java b/x-pack/plugin/deprecation/src/main/java/org/elasticsearch/xpack/deprecation/CcrAutoFollowedSystemIndicesChecker.java index dd999837f89f4..20c5f75b403a1 100644 --- a/x-pack/plugin/deprecation/src/main/java/org/elasticsearch/xpack/deprecation/CcrAutoFollowedSystemIndicesChecker.java +++ b/x-pack/plugin/deprecation/src/main/java/org/elasticsearch/xpack/deprecation/CcrAutoFollowedSystemIndicesChecker.java @@ -10,7 +10,6 @@ import org.elasticsearch.action.ActionListener; import org.elasticsearch.common.settings.Settings; import org.elasticsearch.xpack.core.ccr.CcrAutoFollowInfoFetcher; -import org.elasticsearch.xpack.core.deprecation.DeprecationIssue; import java.util.List; import java.util.stream.Collectors; @@ -42,7 +41,8 @@ private DeprecationIssue createDeprecationIssue(String localIndexName) { "An auto followed index follows a remote system index", "https://www.elastic.co/guide/en/elasticsearch/reference/7.13/migrating-7.14.html#breaking_714_ccr_changes", "Auto followed index [" + localIndexName - + "] follows a remote system index and this behaviour will change in the next major version." + + "] follows a remote system index and this behaviour will change in the next major version.", + null ); }