Merge pull request #56 from 178inaba/stream_error_handling
Fix not to return error event of context in streaming
This commit is contained in:
commit
f279adb618
|
@ -79,7 +79,6 @@ func cmdStream(c *cli.Context) error {
|
||||||
}
|
}
|
||||||
go func() {
|
go func() {
|
||||||
<-sc
|
<-sc
|
||||||
close(q)
|
|
||||||
cancel()
|
cancel()
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
|
|
@ -105,7 +105,6 @@ func (c *Client) streaming(ctx context.Context, p string, params url.Values) (ch
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case <-ctx.Done():
|
case <-ctx.Done():
|
||||||
q <- &ErrorEvent{ctx.Err()}
|
|
||||||
return
|
return
|
||||||
default:
|
default:
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user