-
Type:
Bug
-
Status: Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 4.2.0
-
Component/s: bookkeeper-server
-
Labels:None
in BookKeeper.createLedger() following code is masking the error with ZKException. Should throw the original exception to client.
if (counter.getLh() == null) { LOG.error("ZooKeeper error: " + counter.getrc()); throw BKException.create(Code.ZKException); }