pull/455/head
Gordon 3 years ago committed by Xinwei Xiong(cubxxw-openim)
parent 2c2b5d5737
commit d17559c528

@ -8,6 +8,7 @@ package kafka
import (
"context"
"fmt"
"github.com/Shopify/sarama"
)
@ -28,6 +29,7 @@ func NewMConsumerGroup(consumerConfig *MConsumerGroupConfig, topics, addr []stri
config.Version = consumerConfig.KafkaVersion
config.Consumer.Offsets.Initial = consumerConfig.OffsetsInitial
config.Consumer.Return.Errors = consumerConfig.IsReturnErr
fmt.Println("init address is ", addr, "topics is ", topics)
client, err := sarama.NewClient(addr, config)
if err != nil {
panic(err.Error())

Loading…
Cancel
Save