Technoboy- commented on a change in pull request #14215:
URL: https://github.com/apache/pulsar/pull/14215#discussion_r804307678
##########
File path:
pulsar-broker/src/main/java/org/apache/pulsar/broker/admin/impl/NamespacesBase.java
##########
@@ -499,7 +488,7 @@ protected void
internalDeleteNamespaceForcefully(AsyncResponse asyncResponse, bo
return;
}
- FutureUtil.waitForAll(bundleFutures).handle((result, exception) -> {
+ FutureUtil.waitForAll(bundleFutures).thenCompose(__ ->
internalClearZkSources()).handle((result, exception) -> {
Review comment:
This pr only fix the order of `delete system topic and bundle `. And
make `internalClearZkSources` async.
The `handle` logic use the before logic.
--
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]