Demogorgon314 commented on code in PR #22379:
URL: https://github.com/apache/pulsar/pull/22379#discussion_r1543971934


##########
pulsar-broker/src/main/java/org/apache/pulsar/broker/service/BrokerService.java:
##########
@@ -2244,9 +2244,18 @@ private CompletableFuture<Integer> 
unloadServiceUnit(NamespaceBundle serviceUnit
                 closeFutures.add(topicFuture
                         .thenCompose(t -> t.isPresent() ? t.get().close(
                                 disconnectClients, 
closeWithoutWaitingClientDisconnect)
-                                : CompletableFuture.completedFuture(null)));
+                                : CompletableFuture.completedFuture(null))
+                        .exceptionally(e -> {
+                            if (e.getCause() instanceof 
BrokerServiceException.ServiceUnitNotReadyException
+                                    && e.getMessage().contains("Please redo 
the lookup")) {
+                                log.warn("[{}] Topic ownership check failed. 
Skipping it", topicName);
+                                return null;

Review Comment:
   Do we have a test to cover this change? I noticed that even after removing 
this change, the `testUnloadUponTopicLookupFailure` test still passes.



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