Fix not to return error event of context in streaming
parent
a0466b7cc4
commit
f0eb7d29c4
|
@ -79,7 +79,6 @@ func cmdStream(c *cli.Context) error {
|
|||
}
|
||||
go func() {
|
||||
<-sc
|
||||
close(q)
|
||||
cancel()
|
||||
}()
|
||||
|
||||
|
|
|
@ -105,7 +105,6 @@ func (c *Client) streaming(ctx context.Context, p string, params url.Values) (ch
|
|||
for {
|
||||
select {
|
||||
case <-ctx.Done():
|
||||
q <- &ErrorEvent{ctx.Err()}
|
||||
return
|
||||
default:
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue