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.
This commit is contained in:
Jason Tedor 2016-09-19 07:47:02 -04:00
parent b456823434
commit 9082c604c1
1 changed files with 1 additions and 1 deletions

View File

@ -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.*'
---------------------
=======================================