Skip to content

Commit

Permalink
catch all errors (apache#3844)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjain1 authored and dclim committed Jan 25, 2017
1 parent 515caa8 commit b3dae0e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ public void run()
try {
notice.handle();
}
catch (Exception e) {
catch (Throwable e) {
log.makeAlert(e, "KafkaSupervisor[%s] failed to handle notice", dataSource)
.addData("noticeClass", notice.getClass().getSimpleName())
.emit();
Expand Down

0 comments on commit b3dae0e

Please sign in to comment.