Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 62d733e

Browse files
dryajovdaviddias
authored andcommitted
fix: propagate trailer errors correctly (#636)
* fix: propagate trailer errors correctly * test: fix CRLFs for fixture files
1 parent 447f362 commit 62d733e

File tree

3 files changed

+7
-14
lines changed

3 files changed

+7
-14
lines changed

appveyor.yml

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ environment:
33
- nodejs_version: "6"
44
- nodejs_version: "8"
55

6+
init:
7+
- git config --global core.autocrlf input
8+
69
# cache:
710
# - node_modules
811

src/utils/send-files-stream.js

+2
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,8 @@ module.exports = (send, path) => {
129129
return
130130
}
131131

132+
response.on('error', (err) => retStream.emit('error', err))
133+
132134
response.on('data', (d) => {
133135
if (d.Bytes && options.progress) {
134136
options.progress(d.Bytes)

src/utils/send-request.js

+2-14
Original file line numberDiff line numberDiff line change
@@ -47,28 +47,16 @@ function onRes (buffer, cb) {
4747
// Return a stream of JSON objects
4848
if (chunkedObjects && isJson) {
4949
const outputStream = pump(res, ndjson.parse())
50-
// TODO: This needs reworking.
51-
// this is a chicken and egg problem -
52-
// 1) we can't get Trailer headers unless the response ends
53-
// 2) we can't propagate the error, because the response stream
54-
// is closed
55-
// (perhaps we can workaround this using pull-streams)
5650
res.on('end', () => {
5751
let err = res.trailers['x-stream-error']
5852
if (err) {
5953
// Not all errors are JSON
6054
try {
6155
err = JSON.parse(err)
6256
} catch (e) {
63-
err = {
64-
Code: 'n/a',
65-
Message: err
66-
}
57+
err = { Message: err }
6758
}
68-
const error = new Error(`Server responded with 500`)
69-
error.code = err.Code
70-
error.message = err.Message
71-
outputStream.destroy(error) // error is not going to be propagated
59+
outputStream.emit('error', new Error(err.Message))
7260
}
7361
})
7462
return cb(null, outputStream)

0 commit comments

Comments
 (0)