Skip to content

Commit

Permalink
optimize:chan bool to chan struct{} (#1648)
Browse files Browse the repository at this point in the history
  • Loading branch information
daemon365 authored Nov 24, 2021
1 parent ef3322e commit 27cfec9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions contrib/config/nacos/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ logger:
}
fmt.Println("get value", name)

done := make(chan bool)
done := make(chan struct{})
err = c.Watch("logger.level", func(key string, value kconfig.Value) {
fmt.Println(key, " value change", value)
done <- true
done <- struct{}{}
})
if err != nil {
t.Fatal(err)
Expand Down
6 changes: 3 additions & 3 deletions contrib/registry/nacos/watcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type watcher struct {
groupName string
ctx context.Context
cancel context.CancelFunc
watchChan chan bool
watchChan chan struct{}
cli naming_client.INamingClient
}

Expand All @@ -28,7 +28,7 @@ func newWatcher(ctx context.Context, cli naming_client.INamingClient, serviceNam
clusters: clusters,
groupName: groupName,
cli: cli,
watchChan: make(chan bool, 1),
watchChan: make(chan struct{}, 1),
}
w.ctx, w.cancel = context.WithCancel(ctx)

Expand All @@ -37,7 +37,7 @@ func newWatcher(ctx context.Context, cli naming_client.INamingClient, serviceNam
Clusters: clusters,
GroupName: groupName,
SubscribeCallback: func(services []model.SubscribeService, err error) {
w.watchChan <- true
w.watchChan <- struct{}{}
},
})
return w, e
Expand Down
2 changes: 1 addition & 1 deletion transport/grpc/resolver/discovery/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func (b *builder) Build(target resolver.Target, cc resolver.ClientConn, opts res
err error
w registry.Watcher
)
done := make(chan bool, 1)
done := make(chan struct{}, 1)
ctx, cancel := context.WithCancel(context.Background())
go func() {
w, err = b.discoverer.Watch(ctx, strings.TrimPrefix(target.URL.Path, "/"))
Expand Down

0 comments on commit 27cfec9

Please sign in to comment.