From 9082c604c1d39e2a318e1be629786f449e8ac67e Mon Sep 17 00:00:00 2001 From: Jason Tedor Date: Mon, 19 Sep 2016 07:47:02 -0400 Subject: [PATCH] Fix command-line arguments in REST API spec The command-line arguments for Elasticsearch must now be specified using -E. This commit fixes the usage of command-line arguments in the REST API spec README. --- .../src/main/resources/rest-api-spec/test/README.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest-api-spec/src/main/resources/rest-api-spec/test/README.asciidoc b/rest-api-spec/src/main/resources/rest-api-spec/test/README.asciidoc index 5bc1585849a..612831575e1 100644 --- a/rest-api-spec/src/main/resources/rest-api-spec/test/README.asciidoc +++ b/rest-api-spec/src/main/resources/rest-api-spec/test/README.asciidoc @@ -10,7 +10,7 @@ Elasticsearch as follows: [source,sh] --------------------- -bin/elasticsearch --script.inline true --node.attr.testattr test --path.repo /tmp --repositories.url.allowed_urls 'http://snapshot.*' +bin/elasticsearch -E script.inline true -E node.attr.testattr test -E path.repo /tmp -E repositories.url.allowed_urls 'http://snapshot.*' --------------------- =======================================