Skip to content
This repository was archived by the owner on Apr 5, 2022. It is now read-only.

revise a small typo on kafka error log #1908

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public int compare(Partition partition1, Partition partition2) {
partitionsMapByTopic.put(topic, partitions);
maxPartitionCount = (partitions.size() > maxPartitionCount) ? partitions.size() : maxPartitionCount;
}
Assert.isTrue(maxPartitionCount >= count, "Total module count should not be less than the maximum of " +
Assert.isTrue(maxPartitionCount >= count, "Total module count should not be more than the maximum of " +
"partitions from the given topics");
if (topics.size() > 1) {
Assert.isTrue(!StringUtils.hasText(partitionList), "Explicit partitions list isn't supported for " +
Expand Down