[DOCS] Fix typo in rename_pattern in snapshot/restore documentation

This commit is contained in:
Igor Motov 2014-02-11 09:23:07 -05:00
parent 990ce658a4
commit 02ebe33758
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ $ curl -XPOST "localhost:9200/_snapshot/my_backup/snapshot_1/_restore" -d '{
"indices": "index_1,index_2",
"ignore_unavailable": "true",
"include_global_state": false,
"rename_pattern": "index_(.)+",
"rename_pattern": "index_(.+)",
"rename_replacement": "restored_index_$1"
}'
-----------------------------------