Change the default of `include_global_state` from true to false.

Resolves #18569
This commit is contained in:
Lee Hinman 2016-06-07 15:06:20 -06:00
parent be168f528b
commit 052a62250c
2 changed files with 6 additions and 1 deletions

View File

@ -57,7 +57,7 @@ public class RestoreSnapshotRequest extends MasterNodeRequest<RestoreSnapshotReq
private String renamePattern;
private String renameReplacement;
private boolean waitForCompletion;
private boolean includeGlobalState = true;
private boolean includeGlobalState = false;
private boolean partial = false;
private boolean includeAliases = true;
private Settings settings = EMPTY_SETTINGS;

View File

@ -277,3 +277,8 @@ should be used instead.
The setting `bootstrap.mlockall` has been renamed to
`bootstrap.memory_lock`.
==== Snapshot settings
The default setting `include_global_state` for taking and restoring snapshots
has been changed from `true` to `false`.