Cyrus Najmabadi
Cyrus Najmabadi
The crashing line in question appears to be: https://github.com/nodejs/node/blob/1cb5aed5f596a9cb5b68e3a676222c0c35501a5e/lib/_http_outgoing.js#L137 ```js } else { this.output.unshift(this._header); this.outputEncodings.unshift('latin1'); this.outputCallbacks.unshift(null); this.outputSize += this._header.length; //
@yvele I've been trying my best to debug through this and figure out what the right thing to do is. but i keep hitting a brick wall. The node http...
@maktwin Do you have any ideas either? Do either of you two use static file serving in your FunctionApps? If so, do you do anything special to make it work?
Interesting info. Note: i've been using aws-serverless-express very successfully on aws itself. I was going to try something today which first seemed odd, but now i think would b ea...
I got this all working by moving over to aws-serverless-express. Turns out it works fine as a libary on azure. The code to get it to work was pretty simple,...
PR that switches to just using aws-serverless-express: https://github.com/pulumi/pulumi-cloud/pull/584 We're also considering extracting this into a standalone library . Let me know if you'd be interested in that!
Hi @AlecAivazis. We've also run into this over in Pulumi with https://github.com/pulumi/pulumi/issues/1565. It would definitely be great if these could ever be handled. Thanks!
@ilyas1974 Can someone look at this? It seems pretty bad, especially as it means that CI could pass/fail on something different than the actual code change requested.
This feels like a potential security bug.