Skip to content

Commit 771ce41

Browse files
authored
[improve][broker]Improve NamespaceService log that is printed when cluster was removed (#24801)
1 parent 5b2562d commit 771ce41

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pulsar-broker/src/main/java/org/apache/pulsar/broker/service/BrokerService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2742,8 +2742,8 @@ private void unloadDeletedReplNamespace(Policies data, NamespaceName namespace)
27422742
pulsar().getAdminClient().namespaces().unloadNamespaceBundle(namespace.toString(),
27432743
bundle.getBundleRange());
27442744
} catch (Exception e) {
2745-
log.error("Failed to unload namespace-bundle {}-{} that not owned by {}, {}",
2746-
namespace.toString(), bundle.toString(), localCluster, e.getMessage());
2745+
log.error("Failed to unload namespace-bundle {} that not owned by {}, {}",
2746+
bundle.toString(), localCluster, e.getMessage());
27472747
}
27482748
});
27492749
}

0 commit comments

Comments
 (0)