poorbarcode commented on code in PR #23002:
URL: https://github.com/apache/pulsar/pull/23002#discussion_r1669612152
##########
pulsar-broker/src/main/java/org/apache/pulsar/broker/admin/v2/PersistentTopics.java:
##########
@@ -1167,7 +1167,17 @@ public void deleteTopic(
@ApiParam(value = "Whether leader broker redirected this call to
this broker. For internal use.")
@QueryParam("authoritative") @DefaultValue("false") boolean
authoritative) {
validateTopicName(tenant, namespace, encodedTopic);
- internalDeleteTopicAsync(authoritative, force)
+
+
getPulsarResources().getNamespaceResources().getPartitionedTopicResources()
+ .partitionedTopicExistsAsync(topicName).thenAccept(exists -> {
+ if (exists) {
+ RestException restException = new
RestException(Response.Status.CONFLICT,
+ String.format("%s is a partitioned topic, please call
delete-partitioned-topic"
Review Comment:
Fixed
--
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]