eventsource
eventsource copied to clipboard
After call stream.Close(), panic: send on closed channel
Error line: stream.Errors <- err; in receiveEvents() in stream.go.
In go multi-threading environment, it's possible one thread runs to stream.Errors <- err; Before running this line, close(stream.Errors); is called in stream.Close()
Do you have a reproducible test case, by any chance?