Change the default of `include_global_state` from true to false.
Resolves #18569
This commit is contained in:
parent
be168f528b
commit
052a62250c
|
@ -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;
|
||||
|
|
|
@ -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`.
|
||||
|
|
Loading…
Reference in New Issue