jdrydn

Results 25 comments of jdrydn

@chrisbradleydev See https://github.com/apollographql/apollo-feature-requests/issues/153 for a similar issue & discussion. This https://github.com/apollographql/apollo-feature-requests/issues/153#issuecomment-476832408 fixed it for me!

@BroderPeters Excellent snippet, thank you! Just putting my ~~solution~~ workaround here too: ```yml - docker build -t build:dev . - docker tag build:dev $ECR_REPO_URL:$COMMIT && docker tag build:dev $ECR_REPO_URL:latest -...

@spyoungtech I've updated my reply to name it a "workaround" instead of a solution - and yes, pushing an alternative tag (e.g. `1.0.0`) mitigates some of the problem you faced,...

After reviewing [Introducing AWS Lambda response streaming](https://aws.amazon.com/blogs/compute/introducing-aws-lambda-response-streaming/), I've just read: > Writing the handler for response streaming functions differs from typical Node handler patterns. To indicate to the runtime that...

I'm aware `string` type declaration support was only added in PHP 7, wondering if this is a PHPDoc issue more than this template! 🤦‍♂️

Yeah, I think I had installed v2.9 beforehand, but reverted to 2.8 after seeing this message: ``` Loading composer repositories with package information Updating dependencies (including require-dev) Your requirements could...

Sadly, updating phpdocumentor to `2.9` didn't solve this for me, so my workaround currently is: ```json { "name": "my/awesome/library", "version": "1.0.0", "scripts": { "phpdoc": [ "php vendor/bin/phpdoc", "sed -i -e...

@cvuorinen Yeah, much better than a `sed` command. I don't have a lot of files in this project so I'm happy with that as a solution.

It works fine on it's own (without IAM authentication), if you need to access the original event I suggest you use the `options` argument to amend the incoming `req`: ```js...

Yeah, I'd be interested in this too. I'd be happy to implement it if there's a rough guide somewhere to building these sorts of tracing integrations? Looking at the source...