Browse Source

adjust visibility

pull/5637/head
chrislu 11 months ago
parent
commit
0bf5424a2e
  1. 2
      weed/mq/client/pub_client/publisher.go
  2. 2
      weed/mq/client/pub_client/scheduler.go

2
weed/mq/client/pub_client/publisher.go

@ -45,7 +45,7 @@ func NewTopicPublisher(config *PublisherConfiguration) *TopicPublisher {
wg := sync.WaitGroup{}
wg.Add(1)
go func() {
if err := tp.StartSchedulerThread(&wg); err != nil {
if err := tp.startSchedulerThread(&wg); err != nil {
log.Println(err)
return
}

2
weed/mq/client/pub_client/scheduler.go

@ -28,7 +28,7 @@ type EachPartitionPublishJob struct {
generation int
inputQueue *buffered_queue.BufferedQueue[*mq_pb.DataMessage]
}
func (p *TopicPublisher) StartSchedulerThread(wg *sync.WaitGroup) error {
func (p *TopicPublisher) startSchedulerThread(wg *sync.WaitGroup) error {
if err := p.doEnsureConfigureTopic(); err != nil {
return fmt.Errorf("configure topic %s: %v", p.config.Topic, err)

Loading…
Cancel
Save