Ver Fonte

fixed the function call with changed parameter ordering

Varun há 6 anos atrás
pai
commit
8cc8678245
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      consumer_group.go

+ 1 - 1
consumer_group.go

@@ -267,7 +267,7 @@ func (c *consumerGroup) newSession(ctx context.Context, coordinator *Broker, top
 		}
 	}
 
-	return newConsumerGroupSession(c, ctx, claims, join.MemberId, join.GenerationId, handler)
+	return newConsumerGroupSession(ctx, c, claims, join.MemberId, join.GenerationId, handler)
 }
 
 func (c *consumerGroup) joinGroupRequest(coordinator *Broker, topics []string) (*JoinGroupResponse, error) {