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 @@ -811,7 +811,7 @@ public void onFailure(Throwable t)
// (1) catch all exceptions while reading from kafka
if (Throwables.getRootCause(e) instanceof InterruptedException) {
// Suppress InterruptedException stack trace to avoid flooding the logs
log.error("Encounted InterrupedException in run() before persisting");
log.error("Encountered InterruptedException in run() before persisting");
} else {
log.error(e, "Encountered exception in run() before persisting.");
}
Expand Down
Loading