Remove debug logging in full cluster restart tests (#33612)
These logs are incredibly verbose, and it makes chasing normal failures burdensome. This commit removes the debug logging, which can be reenabled again if needed.
This commit is contained in:
parent
eca37e6e0a
commit
9f8dff9281
|
@ -53,9 +53,6 @@ for (Version version : bwcVersions.indexCompatible) {
|
|||
// some tests rely on the translog not being flushed
|
||||
setting 'indices.memory.shard_inactive_time', '20m'
|
||||
|
||||
// debug logging for testRecovery
|
||||
setting 'logger.level', 'DEBUG'
|
||||
|
||||
if (version.onOrAfter('5.3.0')) {
|
||||
setting 'http.content_type.required', 'true'
|
||||
}
|
||||
|
@ -75,9 +72,6 @@ for (Version version : bwcVersions.indexCompatible) {
|
|||
// some tests rely on the translog not being flushed
|
||||
setting 'indices.memory.shard_inactive_time', '20m'
|
||||
|
||||
// debug logging for testRecovery
|
||||
setting 'logger.level', 'DEBUG'
|
||||
|
||||
numNodes = 2
|
||||
dataDir = { nodeNum -> oldClusterTest.nodes[nodeNum].dataDir }
|
||||
cleanShared = false // We want to keep snapshots made by the old cluster!
|
||||
|
|
|
@ -155,9 +155,6 @@ subprojects {
|
|||
// some tests rely on the translog not being flushed
|
||||
setting 'indices.memory.shard_inactive_time', '20m'
|
||||
|
||||
// debug logging for testRecovery see https://github.com/elastic/x-pack-elasticsearch/issues/2691
|
||||
setting 'logger.level', 'DEBUG'
|
||||
|
||||
setting 'xpack.security.enabled', 'true'
|
||||
setting 'xpack.security.transport.ssl.enabled', 'true'
|
||||
setting 'xpack.ssl.keystore.path', 'testnode.jks'
|
||||
|
@ -201,9 +198,6 @@ subprojects {
|
|||
setupCommand 'setupTestUser', 'bin/elasticsearch-users', 'useradd', 'test_user', '-p', 'x-pack-test-password', '-r', 'superuser'
|
||||
waitCondition = waitWithAuth
|
||||
|
||||
// debug logging for testRecovery see https://github.com/elastic/x-pack-elasticsearch/issues/2691
|
||||
setting 'logger.level', 'DEBUG'
|
||||
|
||||
// some tests rely on the translog not being flushed
|
||||
setting 'indices.memory.shard_inactive_time', '20m'
|
||||
setting 'xpack.security.enabled', 'true'
|
||||
|
|
Loading…
Reference in New Issue