Hi,
I've been using the storage module exclusively with read/write stream interfaces on files. The issue is, the app occasionally has an unhandled error like this:
events.js:141
throw er; // Unhandled 'error' event
^
Error: connect ETIMEDOUT 74.125.202.128:443
at Object.exports._errnoException (util.js:856:11)
at exports._exceptionWithHostPort (util.js:879:20)
at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1063:14)
I'm absolutely certain that there are no missing callbacks on any calls and all stream instances have proper error handlers attached. Some of these timeout errors are being catched by error handlers and does not crash the process.
However, I can not find the source for the unhandled ones within our app. There are only 3 calls to stream creator functions and all of them has proper error handling.
Any ideas?
Hi,
I've been using the storage module exclusively with read/write stream interfaces on files. The issue is, the app occasionally has an unhandled error like this:
I'm absolutely certain that there are no missing callbacks on any calls and all stream instances have proper error handlers attached. Some of these timeout errors are being catched by error handlers and does not crash the process.
However, I can not find the source for the unhandled ones within our app. There are only 3 calls to stream creator functions and all of them has proper error handling.
Any ideas?