Skip to content

Commit 5f1f1fa

Browse files
committed
fix issue with Lambda where streaming repsonses always require a body to be present
1 parent c8a7dff commit 5f1f1fa

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

index.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -122,12 +122,14 @@ module.exports = (app, options) => {
122122
headers: {}
123123
})
124124
}
125+
const stream = res.stream()
125126
return resolve({
126127
meta: {
127128
statusCode: 500,
128129
headers: {}
129130
},
130-
stream: (res && res.stream()) || require('node:stream').Readable.from('')
131+
// fix issue with Lambda where streaming repsonses always require a body to be present
132+
stream: stream.readableLength > 0 ? stream : require('node:stream').Readable.from('')
131133
})
132134
}
133135
// chunked transfer not currently supported by API Gateway
@@ -171,9 +173,11 @@ module.exports = (app, options) => {
171173
return resolve(ret)
172174
}
173175

176+
const stream = res.stream()
174177
resolve({
175178
meta: ret,
176-
stream: res.stream()
179+
// fix issue with Lambda where streaming repsonses always require a body to be present
180+
stream: stream.readableLength > 0 ? stream : require('node:stream').Readable.from('')
177181
})
178182
})
179183
})

0 commit comments

Comments
 (0)