Skip to content
This repository has been archived by the owner on Jul 1, 2022. It is now read-only.

Handle all exceptions during queue processing #591

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 @@ -177,7 +177,7 @@ public void run() {
} catch (SenderException e) {
metrics.reporterFailure.inc(e.getDroppedSpanCount());
}
} catch (InterruptedException e) {
} catch (Exception e) {
log.error("QueueProcessor error:", e);
// Do nothing, and try again on next span.
}
Expand Down