Browse Source

wait for each publish clients

pull/5637/head
chrislu 11 months ago
parent
commit
a297247137
  1. 6
      weed/mq/client/pub_client/publisher.go

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

@ -10,7 +10,6 @@ import (
"google.golang.org/grpc/credentials/insecure"
"log"
"sync"
"time"
)
type PublisherConfiguration struct {
@ -63,7 +62,10 @@ func (p *TopicPublisher) Shutdown() error {
inputBuffer.CloseInput()
}
}
time.Sleep(1100 * time.Millisecond)
for _, job := range p.jobs {
job.wg.Wait()
}
return nil
}
Loading…
Cancel
Save