Fix call to lrpc.ChannelDone

This commit is contained in:
Elara 2022-05-01 15:17:46 -07:00
parent b53388122c
commit f1aa0f5c4f
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ func (c *Client) Call(ctx context.Context, rcvr, method string, arg interface{},
{Dir: reflect.SelectRecv, Chan: ctxDoneVal, Send: reflect.Value{}},
})
if chosen == 1 {
c.Call(context.Background(), "lrpc", "ChannelDone", id, nil)
c.Call(context.Background(), "lrpc", "ChannelDone", chID, nil)
// Close and delete channel
c.chMtx.Lock()
close(c.chs[chID])