Preserve cluster settings on full restart tests (#33590)

Today the full cluster restart tests do not preserve cluster settings on
restart. This is a mistake because it is not an accurate reflection of
reality, we do not expect users to clear cluster settings when they
perform a full cluster restart. This commit makes it so that all full
cluster restart tests preserve settings on upgrade.
This commit is contained in:
Jason Tedor 2018-09-11 08:40:22 -04:00 committed by GitHub
parent 36bdad4895
commit 73c75bef21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -57,4 +57,9 @@ public abstract class AbstractFullClusterRestartTestCase extends ESRestTestCase
return true;
}
@Override
protected boolean preserveClusterSettings() {
return true;
}
}