Open
Description
Hello,
I've set proxyTimeout options, but I'm unable to identify canceled requests from timedout ones. Is there a way to find if the request timedout ?
Or could we had an information to the request when it timeout, something like that :
if (options.proxyTimeout) {
proxyReq.setTimeout(options.proxyTimeout, function () {
proxyReq.abort();
req.timedout = true;
});
}