We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c8fbf4 commit 5240030Copy full SHA for 5240030
lib/helpers/child-process.js
@@ -62,7 +62,7 @@ process.on('message', function(task) {
62
63
// Warning, Black magic.
64
// Streaming and checking for status code is no easy task...
65
- req.end().req.once('response', function(res) {
+ req.end(function() {}).req.once('response', function(res) {
66
if(res.statusCode !== 200) {
67
if(res.statusCode === 410) {
68
err = new Error('410 Gone');
0 commit comments