mirror of https://github.com/apache/kafka.git
MINOR: Fix typo in CommitRequestManager (#18407)
This patch fix a minor typo in CommitRequestManager. Reviewers: Kamal Chandraprakash <kamal.chandraprakash@gmail.com>
This commit is contained in:
parent
738bd928f1
commit
f974b3dcd4
|
@ -477,7 +477,7 @@ public class CommitRequestManager implements RequestManager, MemberStateListener
|
|||
|
||||
private Throwable commitSyncExceptionForError(Throwable error) {
|
||||
if (error instanceof StaleMemberEpochException) {
|
||||
return new CommitFailedException("OffsetCommit failed with stale member epoch."
|
||||
return new CommitFailedException("OffsetCommit failed with stale member epoch. "
|
||||
+ Errors.STALE_MEMBER_EPOCH.message());
|
||||
}
|
||||
return error;
|
||||
|
|
Loading…
Reference in New Issue