Technoboy- commented on a change in pull request #12818:
URL: https://github.com/apache/pulsar/pull/12818#discussion_r749888166
##########
File path:
pulsar-client-admin/src/main/java/org/apache/pulsar/client/admin/internal/TopicsImpl.java
##########
@@ -368,9 +368,10 @@ public void revokePermissions(String topic, String role)
throws PulsarAdminExcep
}
@Override
- public void createPartitionedTopic(String topic, int numPartitions) throws
PulsarAdminException {
+ public void createPartitionedTopic(String topic, int numPartitions,
Map<String, String> metadata)
+ throws PulsarAdminException {
try {
- createPartitionedTopicAsync(topic,
numPartitions).get(this.readTimeoutMs, TimeUnit.MILLISECONDS);
+ createPartitionedTopicAsync(topic, numPartitions,
metadata).get(this.readTimeoutMs, TimeUnit.MILLISECONDS);
Review comment:
Ok, thanks for the suggestion.
--
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]