poorbarcode commented on code in PR #17441:
URL: https://github.com/apache/pulsar/pull/17441#discussion_r962556580
##########
managed-ledger/src/test/java/org/apache/bookkeeper/mledger/impl/ManagedLedgerBkTest.java:
##########
@@ -336,9 +335,14 @@ public void deleteFailed(ManagedLedgerException exception,
Object ctx) {
cursor.close();
ledger.close();
- assertFalse(gotException.get());
+ // Add information to determine the problem.
+ if (gotException.get() != null){
+ fail(ThrowableToStringUtil.toString(gotException.get()));
+ }
}
+
+
Review Comment:
Already fixed
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]