Skip to content

Commit

Permalink
[DOCS] Remove compress param from example snippets (#82994) (#83000)
Browse files Browse the repository at this point in the history
Per [this comment](#56827 (comment)) in #56827, we don't need to highlight the `compress` parameter. The parameter defaults to `true` anyway.

(cherry picked from commit 8ac973f)
  • Loading branch information
jrodewig authored Jan 24, 2022
1 parent 051f944 commit a1b936b
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions docs/reference/tab-widgets/register-fs-repo.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ PUT _snapshot/my_fs_backup
{
"type": "fs",
"settings": {
"location": "/mount/backups/my_fs_backup_location",
"compress": true
"location": "/mount/backups/my_fs_backup_location"
}
}
----
Expand All @@ -39,8 +38,7 @@ PUT _snapshot/my_fs_backup
{
"type": "fs",
"settings": {
"location": "my_fs_backup_location", <1>
"compress": true
"location": "my_fs_backup_location" <1>
}
}
----
Expand Down Expand Up @@ -97,8 +95,7 @@ PUT _snapshot/my_fs_backup
{
"type": "fs",
"settings": {
"location": "E:\\Mount\\Backups\\My_fs_backup_location",
"compress": true
"location": "E:\\Mount\\Backups\\My_fs_backup_location"
}
}
----
Expand All @@ -112,8 +109,7 @@ PUT _snapshot/my_fs_backup
{
"type": "fs",
"settings": {
"location": "My_fs_backup_location", <1>
"compress": true
"location": "My_fs_backup_location" <1>
}
}
----
Expand Down

0 comments on commit a1b936b

Please sign in to comment.