mirror of https://github.com/apache/kafka.git
KAFKA-4162: Fixed typo "rebalance"
Author: David Chen <mvjome@gmail.com>
Reviewers: Ewen Cheslack-Postava <ewen@confluent.io>
Closes #1853 from mvj3/KAFKA-4162
(cherry picked from commit c1bce2d757
)
Signed-off-by: Ewen Cheslack-Postava <me@ewencp.org>
This commit is contained in:
parent
5a03416fe2
commit
068f93511a
|
@ -15,7 +15,7 @@ Java 7 should be used for building in order to support both Java 7 and Java 8 at
|
||||||
Now everything else will work.
|
Now everything else will work.
|
||||||
|
|
||||||
### Building a jar and running it ###
|
### Building a jar and running it ###
|
||||||
./gradlew jar
|
./gradlew jar
|
||||||
|
|
||||||
Follow instructions in http://kafka.apache.org/documentation.html#quickstart
|
Follow instructions in http://kafka.apache.org/documentation.html#quickstart
|
||||||
|
|
||||||
|
|
|
@ -1027,7 +1027,7 @@ public class DistributedHerder extends AbstractHerder implements Runnable {
|
||||||
rebalanceResolved = false;
|
rebalanceResolved = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Delete the statuses of all connectors removed prior to the start of this reblaance. This has to
|
// Delete the statuses of all connectors removed prior to the start of this rebalance. This has to
|
||||||
// be done after the rebalance completes to avoid race conditions as the previous generation attempts
|
// be done after the rebalance completes to avoid race conditions as the previous generation attempts
|
||||||
// to change the state to UNASSIGNED after tasks have been stopped.
|
// to change the state to UNASSIGNED after tasks have been stopped.
|
||||||
if (isLeader())
|
if (isLeader())
|
||||||
|
|
Loading…
Reference in New Issue