Skip to content

Add title and description for FencedInstanceID #1370

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions error.go
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,8 @@ func (e Error) Title() string {
return "Unsupported Compression Type"
case MemberIDRequired:
return "Member ID Required"
case FencedInstanceID:
return "Fenced Instance ID"
case EligibleLeadersNotAvailable:
return "Eligible Leader Not Available"
case ElectionNotNeeded:
Expand Down Expand Up @@ -538,6 +540,8 @@ func (e Error) Description() string {
return "the requesting client does not support the compression type of given partition"
case MemberIDRequired:
return "the group member needs to have a valid member id before actually entering a consumer group"
case FencedInstanceID:
return "the broker rejected this static consumer since another consumer with the same group.instance.id has registered with a different member.id"
case EligibleLeadersNotAvailable:
return "eligible topic partition leaders are not available"
case ElectionNotNeeded:
Expand Down