Skip to content

Commit 9c3a87a

Browse files
committed
ES-9508 Realm prefix deprecation
1 parent 97570cc commit 9c3a87a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

x-pack/plugin/deprecation/src/main/java/org/elasticsearch/xpack/deprecation/NodeDeprecationChecks.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ static DeprecationIssue checkReservedPrefixedRealmNames(
280280
return new DeprecationIssue(
281281
DeprecationIssue.Level.CRITICAL,
282282
"Realm that start with [" + RESERVED_REALM_AND_DOMAIN_NAME_PREFIX + "] will not be permitted in a future major release.",
283-
"https://www.elastic.co/guide/en/elasticsearch/reference/7.14/deprecated-7.14.html#reserved-prefixed-realm-names",
283+
"https://ela.st/es-deprecation-7-realm-prefix",
284284
String.format(
285285
Locale.ROOT,
286286
"Found realm "

x-pack/plugin/deprecation/src/test/java/org/elasticsearch/xpack/deprecation/NodeDeprecationChecksTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ public void testCheckReservedPrefixedRealmNames() {
220220
final DeprecationIssue deprecationIssue = deprecationIssues.get(0);
221221
assertEquals("Realm that start with [_] will not be permitted in a future major release.", deprecationIssue.getMessage());
222222
assertEquals(
223-
"https://www.elastic.co/guide/en/elasticsearch/reference" + "/7.14/deprecated-7.14.html#reserved-prefixed-realm-names",
223+
"https://ela.st/es-deprecation-7-realm-prefix",
224224
deprecationIssue.getUrl()
225225
);
226226
assertEquals(

0 commit comments

Comments
 (0)