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:
David Jacot 2025-01-07 12:59:59 +01:00 committed by GitHub
parent 738bd928f1
commit f974b3dcd4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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;