BewareMyPower commented on code in PR #19972:
URL: https://github.com/apache/pulsar/pull/19972#discussion_r1154008072


##########
pulsar-broker/src/main/java/org/apache/pulsar/broker/service/persistent/PersistentTopic.java:
##########
@@ -338,7 +338,38 @@ public CompletableFuture<Void> initialize() {
             if (cursor.getName().startsWith(replicatorPrefix)) {
                 String localCluster = 
brokerService.pulsar().getConfiguration().getClusterName();
                 String remoteCluster = 
PersistentReplicator.getRemoteCluster(cursor.getName());
-                futures.add(addReplicationCluster(remoteCluster, cursor, 
localCluster));
+                final CompletableFuture<Void> future = new 
CompletableFuture<>();
+                addReplicationCluster(remoteCluster, cursor, 
localCluster).whenComplete((__, e) -> {
+                    if (e == null) {
+                        future.complete(null);
+                    } else {
+                        Throwable throwable = e;
+                        while (throwable.getCause() != null) {
+                            throwable = throwable.getCause();
+                        }
+                        if (throwable instanceof 
MetadataStoreException.NotFoundException
+                                && 
throwable.getMessage().equals(remoteCluster)) {

Review Comment:
   I checked the `ex.getMessage` just to catch a specific failure:
   
   ```java
           return replicationClients.computeIfAbsent(cluster, key -> {
               try {
                   ClusterData data = clusterDataOp
                           .orElseThrow(() -> new 
MetadataStoreException.NotFoundException(cluster));
   ```
   
   The exception message is always the same with the cluster name. If the 
behavior changed, this test would fail.
   
   For other exceptions, I think we should not ignore them.



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