File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -122,12 +122,14 @@ module.exports = (app, options) => {
122
122
headers : { }
123
123
} )
124
124
}
125
+ const stream = res . stream ( )
125
126
return resolve ( {
126
127
meta : {
127
128
statusCode : 500 ,
128
129
headers : { }
129
130
} ,
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 ( '' )
131
133
} )
132
134
}
133
135
// chunked transfer not currently supported by API Gateway
@@ -171,9 +173,11 @@ module.exports = (app, options) => {
171
173
return resolve ( ret )
172
174
}
173
175
176
+ const stream = res . stream ( )
174
177
resolve ( {
175
178
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 ( '' )
177
181
} )
178
182
} )
179
183
} )
You can’t perform that action at this time.
0 commit comments