Reidddddd commented on code in PR #4095:
URL: https://github.com/apache/bookkeeper/pull/4095#discussion_r1343682855
##########
bookkeeper-server/src/main/java/org/apache/bookkeeper/meta/AbstractZkLedgerManagerFactory.java:
##########
@@ -62,9 +62,11 @@ public void format(AbstractConfiguration<?> conf,
LayoutManager layoutManager)
Class<? extends LedgerManagerFactory> factoryClass;
try {
- factoryClass = conf.getLedgerManagerFactoryClass();
- } catch (ConfigurationException e) {
- throw new IOException("Failed to get ledger manager factory class
from configuration : ", e);
+ factoryClass = (Class<? extends LedgerManagerFactory>)
+
Class.forName(layoutManager.readLedgerLayout().getManagerFactoryClass());
+ } catch (ClassNotFoundException e) {
+ // should not reach here, as LayoutManager was successfully inited
+ throw new IOException("Failed to read ledger manager factory class
from LAYOUT : ", e);
}
layoutManager.deleteLedgerLayout();
Review Comment:
that's why we need to read `ledgerManagerFactory class` info out of
`layoutManager` before wiping, and use it to format
--
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]