@@ -931,12 +931,12 @@ func (cg *ConsumerGroup) coordinator() (coordinator, error) {
931
931
// the leader. Otherwise, GroupMemberAssignments will be nil.
932
932
//
933
933
// Possible kafka error codes returned:
934
- // - GroupLoadInProgress:
935
- // - GroupCoordinatorNotAvailable:
936
- // - NotCoordinatorForGroup:
937
- // - InconsistentGroupProtocol:
938
- // - InvalidSessionTimeout:
939
- // - GroupAuthorizationFailed:
934
+ // * GroupLoadInProgress:
935
+ // * GroupCoordinatorNotAvailable:
936
+ // * NotCoordinatorForGroup:
937
+ // * InconsistentGroupProtocol:
938
+ // * InvalidSessionTimeout:
939
+ // * GroupAuthorizationFailed:
940
940
func (cg * ConsumerGroup ) joinGroup (conn coordinator , memberID string ) (string , int32 , GroupMemberAssignments , error ) {
941
941
request , err := cg .makeJoinGroupRequestV1 (memberID )
942
942
if err != nil {
@@ -1079,11 +1079,11 @@ func (cg *ConsumerGroup) makeMemberProtocolMetadata(in []joinGroupResponseMember
1079
1079
// Readers subscriptions topic => partitions
1080
1080
//
1081
1081
// Possible kafka error codes returned:
1082
- // - GroupCoordinatorNotAvailable:
1083
- // - NotCoordinatorForGroup:
1084
- // - IllegalGeneration:
1085
- // - RebalanceInProgress:
1086
- // - GroupAuthorizationFailed:
1082
+ // * GroupCoordinatorNotAvailable:
1083
+ // * NotCoordinatorForGroup:
1084
+ // * IllegalGeneration:
1085
+ // * RebalanceInProgress:
1086
+ // * GroupAuthorizationFailed:
1087
1087
func (cg * ConsumerGroup ) syncGroup (conn coordinator , memberID string , generationID int32 , memberAssignments GroupMemberAssignments ) (map [string ][]int32 , error ) {
1088
1088
request := cg .makeSyncGroupRequestV0 (memberID , generationID , memberAssignments )
1089
1089
response , err := conn .syncGroup (request )
0 commit comments