Skip to content

Commit 362f6b8

Browse files
committed
checkstyle
1 parent af4a689 commit 362f6b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pulsar-client/src/main/java/org/apache/pulsar/client/impl/ProducerImpl.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,9 @@ public ProducerImpl(PulsarClientImpl client, String topic, ProducerConfiguration
200200
this.userProvidedProducerName = StringUtils.isNotBlank(producerName);
201201
this.partitionIndex = partitionIndex;
202202
this.pendingMessages = createPendingMessagesQueue();
203-
// Replication needs to be paused when a message can not be replicated due to failed schema registration. Otherwise,
204-
// it may cause an out-of-order issue, and it may lead to a messages lost issue if users enabled deduplication
205-
// on the remote side.
203+
// Replication needs to be paused when a message can not be replicated due to failed schema registration.
204+
// Otherwise, it may cause an out-of-order issue, and it may lead to a messages lost issue if users enabled
205+
// deduplication on the remote side.
206206
this.pauseSendingToPreservePublishOrderOnSchemaRegFailure = conf.isReplProducer();
207207
if (conf.getMaxPendingMessages() > 0) {
208208
this.semaphore = Optional.of(new Semaphore(conf.getMaxPendingMessages(), true));

0 commit comments

Comments
 (0)