Andrey Novikov

Results 149 comments of Andrey Novikov

@febg11, according to this library source code you can provide custom signing time in `X-Amz-Date` header: https://github.com/mhart/aws4/blob/a413aadd9e4b4e58842937a9ad53354be41ef4a1/aws4.js#L133-L136 Custom expiration time can be provided in `X-Amz-Expires` header: https://github.com/mhart/aws4/blob/a413aadd9e4b4e58842937a9ad53354be41ef4a1/aws4.js#L130-L131 But note that...

As far as I know there is no such possibility. You need to workaround this in your application and your API gateway. Possibly workarounds are: - Forcibly specify `Content-Type: text/csv`...

Also couldn't do `go get gopkg.in/prometheus/client_golang.v0`

That is super weird! Have never heard about such nasty behavior. It would be awesome if you could make reproducible test case, e.g. as a gist using ActiveRecord's bug report...

Also, your code can be simplified. 1. `in_transaction?` check is already built-in into this gem's `after_commit`, so you can remove this check: ```diff def self.perform_when_transaction_commits(*args) - return perform_later(*args) unless in_transaction?...

Wow, looks very interesting! I haven't been looking closely for SAM CLI lately and will not have time to play with new features in a while, so can't say yet.

That's weird! I don't remember such nasty behavior. What is your SAM CLI version? It may be some SAM CLI bug…

This is great research, @ahurlburt! Please open issue in https://github.com/aws/aws-sam-cli with this text so SAM CLI developers can be aware of it and hopefully will fix it some day.

> `No rule to make target 'build-Index'` Well, that's true, there is no such target in [`Makefile`](https://github.com/Envek/aws-sam-typescript-layers-example/blob/84001cacb4eb0bc16d92ae39296ed8092f67a443/Makefile). Are you sure that you didn't make any changes after cloning this repo?...

Thank you very much! I will play with it and merge in a couple of days.