Browse Source

MINOR: fix checkstyle issue in ConsumerConfig.java (#8038)

Reviewers: Ismael Juma <ismael@juma.me.uk>
pull/8041/head
Colin Patrick McCabe 5 years ago committed by GitHub
parent
commit
a16dfe6739
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 20
      clients/src/main/java/org/apache/kafka/clients/consumer/ConsumerConfig.java

20
clients/src/main/java/org/apache/kafka/clients/consumer/ConsumerConfig.java

@ -103,17 +103,17 @@ public class ConsumerConfig extends AbstractConfig {
* <code>partition.assignment.strategy</code> * <code>partition.assignment.strategy</code>
*/ */
public static final String PARTITION_ASSIGNMENT_STRATEGY_CONFIG = "partition.assignment.strategy"; public static final String PARTITION_ASSIGNMENT_STRATEGY_CONFIG = "partition.assignment.strategy";
private static final String PARTITION_ASSIGNMENT_STRATEGY_DOC = "A list of class names or class types, "+ private static final String PARTITION_ASSIGNMENT_STRATEGY_DOC = "A list of class names or class types, " +
"ordered by preference, of supported partition assignment "+ "ordered by preference, of supported partition assignment " +
"strategies that the client will use to distribute partition "+ "strategies that the client will use to distribute partition " +
"ownership amongst consumer instances when group management is "+ "ownership amongst consumer instances when group management is " +
"used.<p>In addition to the default class specified below, "+ "used.<p>In addition to the default class specified below, " +
"you can use the " + "you can use the " +
"<code>org.apache.kafka.clients.consumer.RoundRobinAssignor</code>"+ "<code>org.apache.kafka.clients.consumer.RoundRobinAssignor</code>" +
"class for round robin assignments of partitions to consumers. "+ "class for round robin assignments of partitions to consumers. " +
"</p><p>Implementing the " + "</p><p>Implementing the " +
"<code>org.apache.kafka.clients.consumer.ConsumerPartitionAssignor"+ "<code>org.apache.kafka.clients.consumer.ConsumerPartitionAssignor" +
"</code> interface allows you to plug in a custom assignment"+ "</code> interface allows you to plug in a custom assignment" +
"strategy."; "strategy.";
/** /**

Loading…
Cancel
Save