codelipenghui commented on a change in pull request #13887:
URL: https://github.com/apache/pulsar/pull/13887#discussion_r789632828



##########
File path: 
pulsar-broker/src/main/java/org/apache/pulsar/broker/admin/impl/PersistentTopicsBase.java
##########
@@ -4577,12 +4575,10 @@ protected void 
internalSetReplicatedSubscriptionStatus(AsyncResponse asyncRespon
         }
     }
 
-    private void 
internalSetReplicatedSubscriptionStatusForNonPartitionedTopic(AsyncResponse 
asyncResponse,
-            String subName, boolean authoritative, boolean enabled) {
-        try {
-            // Redirect the request to the appropriate broker if this broker 
is not the owner of the topic
-            validateTopicOwnership(topicName, authoritative);
-
+    private CompletableFuture<Void> 
internalSetReplicatedSubscriptionStatusForNonPartitionedTopicAsync(AsyncResponse
 asyncResponse,
+        String subName,boolean authoritative,boolean enabled) {
+        // Redirect the request to the appropriate broker if this broker is 
not the owner of the topic
+        return validateTopicOwnershipAsync(topicName, 
authoritative).thenRun(() -> {
             Topic topic = getTopicReference(topicName);

Review comment:
       Nice catch!




-- 
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]


Reply via email to