nodece commented on code in PR #19632:
URL: https://github.com/apache/pulsar/pull/19632#discussion_r1121399630
##########
pulsar-broker/src/main/java/org/apache/pulsar/broker/service/BrokerService.java:
##########
@@ -956,13 +956,18 @@ public CompletableFuture<Optional<Topic>> getTopic(final
String topic, boolean c
public CompletableFuture<Optional<Topic>> getTopic(final String topic,
boolean createIfMissing,
Map<String, String>
properties) {
+ return getTopic(TopicName.get(topic), createIfMissing, properties);
+ }
+
+ public CompletableFuture<Optional<Topic>> getTopic(final TopicName
topicName, boolean createIfMissing,
Review Comment:
See https://github.com/apache/pulsar/pull/17416
--
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]