Michael Hart
Michael Hart
It's looking for an `index.js` file with a `handler` function (by default)
@GeoffreyBooth yes, it works just fine for me. ```console $ git clone https://github.com/cnadiminti/docker-aws-sam-local $ cd docker-aws-sam-local $ make local-start-api 2017/11/01 15:14:53 Connected to Docker 1.32 2017/11/01 15:14:53 Fetching lambci/lambda:nodejs6.10 image...
This is also an issue with `sam package` creating layers that contain symlinks. Given: ```yaml AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Resources: DependenciesLayer: Type: AWS::Serverless::LayerVersion Properties: ContentUri: dependencies/ ``` If the `dependencies`...
You can now do this using `extraHeadersToInclude`: ```js aws4.sign({ service: 'mycustomservice', path: '/whatever', headers: { 'Range': 'bytes=200-1000, 2000-6576, 19000-' }, extraHeadersToInclude: { 'range': true } }) ```
Good question – what's required to support that?
@tylr @ZeeJab thoughts on ownership of this ol' thing? Happy for us to move it somewhere else? (I'm easy either way!)
Schweet, ship it! :shipit:
No you haven't missed anything in the code – there is no batch writing. This may be an option to add, but there would need to be some configuration around...
That said. It appears that `ts-node` has taken a similar stance, and also doesn't do the transform, which means ppl need to use https://github.com/dividab/tsconfig-paths – I guess that's the solution...
Hmmm, interesting. Does it continue to happen if you do: `myStream.pause = true`?