Skip to content

Commit e9b2169

Browse files
authored
Merge pull request #264 from goldsrc/master
Fix request timeout handling in parser.js
2 parents 59ee076 + 0afb479 commit e9b2169

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/parser.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,9 @@ class Parser {
118118
})
119119
req.on('error', reject);
120120
timeout = setTimeout(() => {
121-
return reject(new Error("Request timed out after " + this.options.timeout + "ms"));
121+
let err = new Error("Request timed out after " + this.options.timeout + "ms");
122+
req.destroy(err);
123+
reject(err);
122124
}, this.options.timeout);
123125
}).then(data => {
124126
clearTimeout(timeout);

0 commit comments

Comments
 (0)