diff --git a/modules/rest-api/pages/rest-node-index-path.adoc b/modules/rest-api/pages/rest-node-index-path.adoc index aa6a9b5704..24c5455634 100644 --- a/modules/rest-api/pages/rest-node-index-path.adoc +++ b/modules/rest-api/pages/rest-node-index-path.adoc @@ -26,8 +26,8 @@ This parameter can only be used when initializing a node that is not part of a p | `cbas_path` | The path for analytics storage. -This parameter can be repeated several times, separated by ampersands, -to setup multiple storage paths (I/O devices) in analytics. +This parameter can be repeated several times, to setup +multiple storage paths (I/O devices) in analytics. |=== == Syntax @@ -38,7 +38,10 @@ Curl request syntax: curl -X POST -u [admin]:[password] -d path=[data storage path] -d index_path=[index storage path] - -d cbas_path=[analytics storage paths] + -d cbas_path=[analytics storage path 1] + [-d cbas_path=[analytics storage path 2], + ... + -d cbas_path=[analytics storage path n]] http://[localhost]:8091/nodes/self/controller/settings ---- @@ -59,7 +62,9 @@ Curl request example ---- curl -X POST -u Administrator:password \ -d 'index_path=/var/tmp/test_indexpath' \ - -d 'cbas_path=/mnt/d1&cbas_path=/mnt/d2&cbas_path=/mnt/d3' \ + -d 'cbas_path=/mnt/d1' \ + -d 'cbas_path=/mnt/d2' \ + -d 'cbas_path=/mnt/d3' \ http://127.0.0.1:8091/nodes/self/controller/settings ----