CuratorDruidNodeDiscoveryProvider: do not ignore exception in listener execution and log it (#8616)

This commit is contained in:
Himanshu 2019-10-02 08:50:28 -07:00 committed by Fangjin Yang
parent 8537fbeca7
commit 0f7e0ff030
1 changed files with 1 additions and 1 deletions

View File

@ -330,7 +330,7 @@ public class CuratorDruidNodeDiscoveryProvider extends DruidNodeDiscoveryProvide
runnable.run();
}
catch (Exception ex) {
log.error(errMsgFormat, args);
log.error(ex, errMsgFormat, args);
}
});
}