javascript - What is the difference between BrokenPipeError and ConnectionAbortedError? -


i playing eventlet's websocket. when connect websocket browser, , close websocket browser, connectionabortederror raised on server side, eventlet's documentation states brokenpipeerror should raised.

i read python's documentation brokenpipeerror , connectionabortederror don't understand difference.

here javascript code :

var socket = new websocket('ws://...'); socket.onmessage = function(m){console.log(m.data);}; socket.close(); 


Comments

Popular posts from this blog

php - Auto increment employee ID -

php - isset function not working properly -

python - Evaluating the next line in a For Loop while in the current iteration -