[DOCS] Fixed hardcoded link to ES ref.

Original commit: elastic/x-pack-elasticsearch@045561b93d
This commit is contained in:
Deb Adair 2017-08-16 13:59:37 -07:00
parent 2bf8f4b0bc
commit 6aac2b9f11
1 changed files with 5 additions and 5 deletions

View File

@ -17,14 +17,14 @@ GET /_xpack/migration/deprecations
Example response: Example response:
[source,js] ["source","js",subs="attributes,callouts,macros"]
-------------------------------------------------- --------------------------------------------------
{ {
"cluster_settings" : [ "cluster_settings" : [
{ {
"level" : "info", "level" : "info",
"message" : "Network settings changes", "message" : "Network settings changes",
"url" : "https://www.elastic.co/guide/en/elasticsearch/reference/master/breaking_60_indices_changes.html#_index_templates_use_literal_index_patterns_literal_instead_of_literal_template_literal", "url" : "{ref}/breaking_60_indices_changes.html#_index_templates_use_literal_index_patterns_literal_instead_of_literal_template_literal",
"details" : "templates using `template` field: watches,.monitoring-alerts,.watch-history-6,.ml-notifications,security-index-template,triggered_watches,.monitoring-es,.ml-meta,.ml-state,.monitoring-logstash,.ml-anomalies-,.monitoring-kibana" "details" : "templates using `template` field: watches,.monitoring-alerts,.watch-history-6,.ml-notifications,security-index-template,triggered_watches,.monitoring-es,.ml-meta,.ml-state,.monitoring-logstash,.ml-anomalies-,.monitoring-kibana"
} }
], ],
@ -34,7 +34,7 @@ Example response:
{ {
"level" : "info", "level" : "info",
"message" : "Coercion of boolean fields", "message" : "Coercion of boolean fields",
"url" : "https://www.elastic.co/guide/en/elasticsearch/reference/master/breaking_60_mappings_changes.html#_coercion_of_boolean_fields", "url" : "{ref}/breaking_60_mappings_changes.html#_coercion_of_boolean_fields",
"details" : "[[type: doc, field: spins], [type: doc, field: mlockall], [type: doc, field: node_master], [type: doc, field: primary]]" "details" : "[[type: doc, field: spins], [type: doc, field: mlockall], [type: doc, field: node_master], [type: doc, field: primary]]"
} }
] ]
@ -48,12 +48,12 @@ cluster should resolve before upgrading. Any offending setting will be represent
The following is an example deprecation warning: The following is an example deprecation warning:
[source,js] ["source","js",subs="attributes,callouts,macros"]
-------------------------------------------------- --------------------------------------------------
{ {
"level" : "info", "level" : "info",
"message" : "This is the generic descriptive message of the breaking change", "message" : "This is the generic descriptive message of the breaking change",
"url" : "https://www.elastic.co/guide/en/elasticsearch/reference/master/breaking_60_indices_changes.html", "url" : "{ref}/breaking_60_indices_changes.html",
"details" : "more information, like which nodes, indices, or settings are to blame" "details" : "more information, like which nodes, indices, or settings are to blame"
} }
-------------------------------------------------- --------------------------------------------------