Skip to content

Commit

Permalink
Merge pull request #8999 from yudai/fix_revision_failed_message
Browse files Browse the repository at this point in the history
compactor: fix error message of Revision compactor
  • Loading branch information
xiang90 committed Dec 11, 2017
2 parents 809b0d7 + 06365b6 commit b52856d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compactor/revision.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func (t *Revision) Run() {
previous = rev
plog.Noticef("Finished auto-compaction at revision %d", rev)
} else {
plog.Noticef("Failed auto-compaction at revision %d (%v)", err, rev)
plog.Noticef("Failed auto-compaction at revision %d (%v)", rev, err)
plog.Noticef("Retry after %v", checkCompactionInterval)
}
}
Expand Down

0 comments on commit b52856d

Please sign in to comment.