codelipenghui commented on a change in pull request #14458:
URL: https://github.com/apache/pulsar/pull/14458#discussion_r815255019



##########
File path: 
pulsar-broker/src/main/java/org/apache/pulsar/broker/service/ServerCnx.java
##########
@@ -1273,6 +1273,20 @@ protected void handleProducer(final CommandProducer 
cmdProducer) {
                             if (!Strings.isNullOrEmpty(initialSubscriptionName)
                                     && topic.isPersistent()
                                     && 
!topic.getSubscriptions().containsKey(initialSubscriptionName)) {
+                                if 
(!this.getBrokerService().isAllowAutoSubscriptionCreation(topicName)) {
+                                    String msg =
+                                            "Could not create the initial 
subscription due to the auto subscription "
+                                                    + "creation is not 
allowed.";
+                                    if (producerFuture.completeExceptionally(
+                                            new 
BrokerServiceException.NotAllowedException(msg))) {
+                                        log.warn("[{}] {} 
initialSubscriptionName: {}, topic: {}",
+                                                remoteAddress, msg, 
initialSubscriptionName, topicName);
+                                        
commandSender.sendErrorResponse(requestId,
+                                                ServerError.NotAllowedError, 
msg);

Review comment:
       +1




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