Adrian Hesketh

Results 406 comments of Adrian Hesketh

Thanks for that. I've refactored the code in the example repo to support spies by moving to the `commonjs` format at https://github.com/a-h/esbuild-mock-test/commit/07131865d6f2bc1fc845f9c8f71b5018c3b2f30d However, if I run the `tsc` compiler on...

@akshayr20 - I think you're more likely to get an answer if you provide a reproduction of the issue - e.g. a minimal reproduction of the issue. I don't think...

It took me a while to work out how to use the tool, and I gave up once before. Here's the `main.go` file I run to package up some JSON...

The current style of logging doesn't suit CloudWatch either, since it logs way too many lines. Using a single line of JSON works much better (e.g. by using something like...

Thanks, I've raised a PR to use zap consistently throughout, since there's still some `log.Printf` style things in there - https://github.com/open-telemetry/opentelemetry-lambda/pull/266

Similar situation with Go. I was testing out following the advice to switch to Open Telemetry, spent a few hours on troubleshooting etc., only to find that the Lambda layer...

If there's nothing enqueued, then there's no error.

Thanks @projectzerotohero, that's likely the source of the problem. I was testing with a local MySQL 5.6 database, since I had intended to use Hangfire with AWS Aurora RDS which...

What works fine @asura-asp? This issue is about the AWS::SQS::Queue CloudFormation resource (documented at https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sqs-queue.html) not supporting an attribute to set SSE-SQS mode. Reading through the docs, I think the...

@jean-passos - I think you're right. I ran a test today by creating an example CloudFormation template: ```yaml AWSTemplateFormatVersion: "2010-09-09" Resources: QueueEncryptionTest: Type: AWS::SQS::Queue Properties: SqsManagedSseEnabled: true ``` ```shell aws...