diff --git a/server/src/main/java/org/elasticsearch/rest/action/cat/RestIndicesAction.java b/server/src/main/java/org/elasticsearch/rest/action/cat/RestIndicesAction.java index 0f652d9ff12d6..5a50b0ff04ce6 100644 --- a/server/src/main/java/org/elasticsearch/rest/action/cat/RestIndicesAction.java +++ b/server/src/main/java/org/elasticsearch/rest/action/cat/RestIndicesAction.java @@ -42,7 +42,6 @@ import org.elasticsearch.common.settings.Settings; import org.elasticsearch.common.time.DateFormatter; import org.elasticsearch.common.unit.TimeValue; -import org.elasticsearch.index.IndexNotFoundException; import org.elasticsearch.index.IndexSettings; import org.elasticsearch.rest.RestController; import org.elasticsearch.rest.RestRequest; @@ -126,11 +125,6 @@ public void onResponse(final GetSettingsResponse getSettingsResponse) { @Override public void onFailure(final Exception e) { - // Temporary logging to help debug https://github.com/elastic/elasticsearch/issues/45652 - // TODO: remove this when we understand why _cat/indices sometimes returns a 404 - if (e instanceof IndexNotFoundException) { - logger.debug("_cat/indices returning index_not_found_exception", e); - } listener.onFailure(e); } }); diff --git a/x-pack/plugin/ml/qa/native-multi-node-tests/build.gradle b/x-pack/plugin/ml/qa/native-multi-node-tests/build.gradle index 7c7b2018ce7a2..4c6c8b49fa634 100644 --- a/x-pack/plugin/ml/qa/native-multi-node-tests/build.gradle +++ b/x-pack/plugin/ml/qa/native-multi-node-tests/build.gradle @@ -55,8 +55,6 @@ testClusters.integTest { setting 'xpack.security.audit.enabled', 'false' setting 'xpack.license.self_generated.type', 'trial' setting 'xpack.ml.min_disk_space_off_heap', '200mb' - // TODO: remove when the cause of https://github.com/elastic/elasticsearch/issues/45652 is understood - setting 'logger.org.elasticsearch.rest.action.cat', 'DEBUG' keystore 'bootstrap.password', 'x-pack-test-password' keystore 'xpack.security.transport.ssl.secure_key_passphrase', 'testnode'