Skip to content

Commit

Permalink
micro: discovery wait watch
Browse files Browse the repository at this point in the history
  • Loading branch information
lesismal committed Apr 25, 2022
1 parent ac6233c commit cf90177
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions extension/micro/etcd/discovery.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,17 @@ type Discovery struct {
}

func (ds *Discovery) init(done chan struct{}) {
doneWatch := make(chan struct{})
go util.Safe(func() {
ds.lazyInit(done)
ds.lazyInit(done, doneWatch)
})
ds.watch()
ds.watch(doneWatch)
}

func (ds *Discovery) lazyInit(done chan struct{}) {
func (ds *Discovery) lazyInit(done, doneWatch chan struct{}) {
defer close(done)

<-doneWatch
time.Sleep(time.Second / 100)
resp, err := ds.client.Get(context.Background(), ds.prefix, clientv3.WithPrefix())
if err != nil {
Expand All @@ -40,8 +42,9 @@ func (ds *Discovery) lazyInit(done chan struct{}) {
}
}

func (ds *Discovery) watch() {
func (ds *Discovery) watch(doneWatch chan struct{}) {
rch := ds.client.Watch(context.Background(), ds.prefix, clientv3.WithPrefix())
close(doneWatch)
log.Info("Discovery watching: %s", ds.prefix)
for wresp := range rch {
for _, ev := range wresp.Events {
Expand Down

0 comments on commit cf90177

Please sign in to comment.