mirror of https://github.com/apache/druid.git
catch all errors (#3844)
This commit is contained in:
parent
515caa8a85
commit
b3dae0efc3
|
@ -313,7 +313,7 @@ public class KafkaSupervisor implements Supervisor
|
||||||
try {
|
try {
|
||||||
notice.handle();
|
notice.handle();
|
||||||
}
|
}
|
||||||
catch (Exception e) {
|
catch (Throwable e) {
|
||||||
log.makeAlert(e, "KafkaSupervisor[%s] failed to handle notice", dataSource)
|
log.makeAlert(e, "KafkaSupervisor[%s] failed to handle notice", dataSource)
|
||||||
.addData("noticeClass", notice.getClass().getSimpleName())
|
.addData("noticeClass", notice.getClass().getSimpleName())
|
||||||
.emit();
|
.emit();
|
||||||
|
|
Loading…
Reference in New Issue