Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,11 @@ 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);
}
});
Expand Down Expand Up @@ -227,11 +232,6 @@ public void onResponse(final Collection<ActionResponse> responses) {

@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);
}
}, size);
Expand Down