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
Node.js commit nodejs/node-v0.x-archive@f347573 causes eventsource to crash upon subscription because it is attempting to use Infinity as a timeout value:
RangeError: msecs must be a non-negative finite number
at Object.exports.enroll (timers.js:160:11)
at Socket.setTimeout (net.js:329:12)
at pushd/lib/eventsource.coffee:34:20
I don't know what the proper solution is, but I tried changing Infinity to 0x7FFFFFFF and things seem to work.
The text was updated successfully, but these errors were encountered:
Node.js commit nodejs/node-v0.x-archive@f347573 causes eventsource to crash upon subscription because it is attempting to use Infinity as a timeout value:
I don't know what the proper solution is, but I tried changing Infinity to 0x7FFFFFFF and things seem to work.
The text was updated successfully, but these errors were encountered: