You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Seems related to #875.
Opening multiple websockets results in EOFError.
MWE with just 2 websockets:
using HTTP
WebSockets.listen!() do ws
for msg in ws
gsm =reverse(msg)
HTTP.send(ws, gsm)
endend
n =2for i in1:n
HTTP.WebSockets.open("http://localhost:8081") do ws
msg =rand(UInt8, 10)
HTTP.send(ws, msg)
gsm = HTTP.receive(ws)
@assertreverse(msg) == gsm
endend
Seems related to #875.
Opening multiple websockets results in
EOFError
.MWE with just 2 websockets:
Version info:
Stacktrace
The text was updated successfully, but these errors were encountered: