From 904c3bb28c1e9f718481481a7086116db742ac93 Mon Sep 17 00:00:00 2001 From: Bo Andersen Date: Thu, 24 Feb 2022 11:39:49 +0100 Subject: [PATCH] [DOCS] Fix double backticks for inline code snippets (#1540) --- docs/advanced-config.asciidoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/advanced-config.asciidoc b/docs/advanced-config.asciidoc index 34eb3d750..1f9d2bc07 100644 --- a/docs/advanced-config.asciidoc +++ b/docs/advanced-config.asciidoc @@ -89,12 +89,12 @@ const client = new Client({ ==== Migrate to v8 The Node.js client can be configured to emit an HTTP header -``Accept: application/vnd.elasticsearch+json; compatible-with=7`` +`Accept: application/vnd.elasticsearch+json; compatible-with=7` which signals to Elasticsearch that the client is requesting -``7.x`` version of request and response bodies. This allows for +`7.x` version of request and response bodies. This allows for upgrading from 7.x to 8.x version of Elasticsearch without upgrading everything at once. Elasticsearch should be upgraded first after the compatibility header is configured and clients should be upgraded second. To enable to setting, configure the environment variable -``ELASTIC_CLIENT_APIVERSIONING`` to ``true``. +`ELASTIC_CLIENT_APIVERSIONING` to `true`.