mirror of https://github.com/apache/kafka.git
MINOR: Fix typo in Log.scala: "actually recovery" > "actually recover" (#4440)
This commit is contained in:
parent
70f25b9519
commit
ae6cb15f5f
|
|
@ -425,7 +425,7 @@ class Log(@volatile var dir: File,
|
|||
private def recoverLog(): Long = {
|
||||
// if we have the clean shutdown marker, skip recovery
|
||||
if (!hasCleanShutdownFile) {
|
||||
// okay we need to actually recovery this log
|
||||
// okay we need to actually recover this log
|
||||
val unflushed = logSegments(this.recoveryPoint, Long.MaxValue).iterator
|
||||
while (unflushed.hasNext) {
|
||||
val segment = unflushed.next
|
||||
|
|
|
|||
Loading…
Reference in New Issue