Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change bookkeeper main method class (apache#8065)
### Motivation * `BookieServer::main()` is legacy method. https://github.com/apache/bookkeeper/blob/release-4.9.2/bookkeeper-server/src/main/java/org/apache/bookkeeper/proto/BookieServer.java#L310-L315 ``` /** * Legacy Method to run bookie server. */ public static void main(String[] args) { Main.main(args); } ``` ### Modifications * Call `Main::main()` instead of `BookieServer::main()`. https://github.com/apache/bookkeeper/blob/release-4.9.2/bookkeeper-server/src/main/java/org/apache/bookkeeper/server/Main.java#L202-L205
- Loading branch information