GitHub user eljefe6a opened a pull request: https://github.com/apache/kafka/pull/592
KAFKA-2892 Consumer Docs Use Wrong Method The KafkaConsumer docs use a non-existent method for assigning partitions (consumer.assign). The JavaDocs show as: ``` String topic = "foo"; TopicPartition partition0 = new TopicPartition(topic, 0); TopicPartition partition1 = new TopicPartition(topic, 1); consumer.assign(partition0); consumer.assign(partition1); ``` Should be: ``` String topic = "foo"; TopicPartition partition0 = new TopicPartition(topic, 0); TopicPartition partition1 = new TopicPartition(topic, 1); consumer.assign(Arrays.asList(partition0, partition1)); ``` You can merge this pull request into a Git repository by running: $ git pull https://github.com/eljefe6a/kafka trunk Alternatively you can review and apply these changes as the patch at: https://github.com/apache/kafka/pull/592.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #592 ---- commit 3a9bb6b28771634481eb4edc6c8031b1361c3f25 Author: Jesse Anderson <eljef...@gmail.com> Date: 2015-11-26T04:38:44Z KAFKA-2892 Consumer Docs Use Wrong Method ---- --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---