Skip to content

Commit cc3217a

Browse files
authored
fix: updated stream aborted error message to be more clear (#6615)
1 parent 8f3cde1 commit cc3217a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/adapters/http.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ export default isHttpAdapterSupported && function httpAdapter(config) {
569569
}
570570

571571
const err = new AxiosError(
572-
'maxContentLength size of ' + config.maxContentLength + ' exceeded',
572+
'stream has been aborted',
573573
AxiosError.ERR_BAD_RESPONSE,
574574
config,
575575
lastRequest

test/unit/adapters/http.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1642,7 +1642,7 @@ describe('supports http with nodejs', function () {
16421642
assert.strictEqual(success, false, 'request should not succeed');
16431643
assert.strictEqual(failure, true, 'request should fail');
16441644
assert.strictEqual(error.code, 'ERR_BAD_RESPONSE');
1645-
assert.strictEqual(error.message, 'maxContentLength size of -1 exceeded');
1645+
assert.strictEqual(error.message, 'stream has been aborted');
16461646
done();
16471647
}).catch(done);
16481648
});

0 commit comments

Comments
 (0)