Skip to content

Commit

Permalink
Replaced "true" with true in snapshot restore docs
Browse files Browse the repository at this point in the history
  • Loading branch information
clintongormley committed Aug 12, 2016
1 parent 35e4f24 commit 15c96df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/reference/modules/snapshots.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ which returns:
"my_backup": {
"type": "fs",
"settings": {
"compress": "true",
"compress": true,
"location": "/mount/backups/my_backup"
}
}
Expand Down Expand Up @@ -219,7 +219,7 @@ specifying the list of indices in the body of the snapshot request.
PUT /_snapshot/my_backup/snapshot_1
{
"indices": "index_1,index_2",
"ignore_unavailable": "true",
"ignore_unavailable": true,
"include_global_state": false
}
-----------------------------------
Expand Down Expand Up @@ -340,7 +340,7 @@ with associated indices
POST /_snapshot/my_backup/snapshot_1/_restore
{
"indices": "index_1,index_2",
"ignore_unavailable": "true",
"ignore_unavailable": true,
"include_global_state": true,
"rename_pattern": "index_(.+)",
"rename_replacement": "restored_index_$1"
Expand Down

0 comments on commit 15c96df

Please sign in to comment.