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
I'm seeing a node.js assertion failure that causes node to crash if I abort() an https request and finalize() a statement during the https 'response' event.
I've reproduced this on node 0.10.38 on Ubuntu 14.04 and Mac.
I have not been able to reproduce this on 0.12.2 or io.js 1.7.1. I also have not been able to reproduce this on 0.10.38 on Windows.
It seems like a work-around is to defer calling finalize() until process.nextTick.
The text was updated successfully, but these errors were encountered:
I'm seeing a node.js assertion failure that causes node to crash if I
abort()
an https request andfinalize()
a statement during the https'response'
event.Node crashes with:
Here's code that causes the crash:
https://gist.github.com/briangreenery/bbb917b470e958626167
I've reproduced this on node 0.10.38 on Ubuntu 14.04 and Mac.
I have not been able to reproduce this on 0.12.2 or io.js 1.7.1. I also have not been able to reproduce this on 0.10.38 on Windows.
It seems like a work-around is to defer calling
finalize()
untilprocess.nextTick
.The text was updated successfully, but these errors were encountered: