@@ -931,12 +931,12 @@ func (cg *ConsumerGroup) coordinator() (coordinator, error) {
931931// the leader. Otherwise, GroupMemberAssignments will be nil.
932932//
933933// 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:
940940func (cg * ConsumerGroup ) joinGroup (conn coordinator , memberID string ) (string , int32 , GroupMemberAssignments , error ) {
941941 request , err := cg .makeJoinGroupRequestV1 (memberID )
942942 if err != nil {
@@ -1079,11 +1079,11 @@ func (cg *ConsumerGroup) makeMemberProtocolMetadata(in []joinGroupResponseMember
10791079// Readers subscriptions topic => partitions
10801080//
10811081// 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:
10871087func (cg * ConsumerGroup ) syncGroup (conn coordinator , memberID string , generationID int32 , memberAssignments GroupMemberAssignments ) (map [string ][]int32 , error ) {
10881088 request := cg .makeSyncGroupRequestV0 (memberID , generationID , memberAssignments )
10891089 response , err := conn .syncGroup (request )
0 commit comments