You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//There is another known issue with aws lambda streaming where the request reach the lambda only way after the request has been sent by the client. For this there is absolutely nothing we can do, contact aws support if that's your case
298
302
_flush(callback: TransformCallback): void{
299
303
if(
300
-
this.body.length<1&&
304
+
this.getBody().length<1&&
301
305
// We use an env variable here because not all aws account have the same behavior
302
306
// On some aws accounts the response will hang if the body is empty
303
307
// We are modifying the response body here, this is not a good practice
0 commit comments