mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-11-24 16:53:14 +08:00
avoid nil stopChan
This commit is contained in:
@@ -24,6 +24,7 @@ func NewConsumerGroup(t *mq_pb.Topic, reblanceSeconds int32, filerClientAccessor
|
|||||||
topic: topic.FromPbTopic(t),
|
topic: topic.FromPbTopic(t),
|
||||||
ConsumerGroupInstances: cmap.New[*ConsumerGroupInstance](),
|
ConsumerGroupInstances: cmap.New[*ConsumerGroupInstance](),
|
||||||
filerClientAccessor: filerClientAccessor,
|
filerClientAccessor: filerClientAccessor,
|
||||||
|
stopCh: make(chan struct{}),
|
||||||
}
|
}
|
||||||
if conf, err := cg.filerClientAccessor.ReadTopicConfFromFiler(cg.topic); err == nil {
|
if conf, err := cg.filerClientAccessor.ReadTopicConfFromFiler(cg.topic); err == nil {
|
||||||
var partitions []topic.Partition
|
var partitions []topic.Partition
|
||||||
@@ -53,8 +54,8 @@ func NewConsumerGroup(t *mq_pb.Topic, reblanceSeconds int32, filerClientAccessor
|
|||||||
Message: &mq_pb.SubscriberToSubCoordinatorResponse_Assignment_{
|
Message: &mq_pb.SubscriberToSubCoordinatorResponse_Assignment_{
|
||||||
Assignment: &mq_pb.SubscriberToSubCoordinatorResponse_Assignment{
|
Assignment: &mq_pb.SubscriberToSubCoordinatorResponse_Assignment{
|
||||||
PartitionAssignment: &mq_pb.BrokerPartitionAssignment{
|
PartitionAssignment: &mq_pb.BrokerPartitionAssignment{
|
||||||
Partition: adjustment.partition.ToPbPartition(),
|
Partition: adjustment.partition.ToPbPartition(),
|
||||||
LeaderBroker: assignment.LeaderBroker,
|
LeaderBroker: assignment.LeaderBroker,
|
||||||
FollowerBroker: assignment.FollowerBroker,
|
FollowerBroker: assignment.FollowerBroker,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user