This commit is contained in:
Derek Perkins 2020-06-19 23:51:41 -06:00 committed by GitHub
parent 3f29740e18
commit 3979bf0f99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -265,7 +265,7 @@ func (g *Group) Remove(ctx context.Context, key string) error {
}
wg.Add(1)
go func(peer string) {
go func(peer ProtoGetter) {
errs <- g.removeFromPeer(ctx, peer, key)
wg.Done()
}(peer)