fix: register otherwise silent http response error

This commit is contained in:
AJ ONeal 2022-07-07 02:55:16 -06:00
parent bb30d5acf6
commit 3aac42d08b
No known key found for this signature in database
GPG Key ID: 585419CA6DB0AA23
1 changed files with 3 additions and 0 deletions

View File

@ -120,6 +120,9 @@ function handleResponse(resp, opts, cb) {
resp.body = '';
}
resp._bodyLength = 0;
resp.once('error', function (err) {
cb(err, resp, resp.body);
});
resp.on('readable', function () {
var chunk;
while ((chunk = resp.read())) {