Michael S. Fischer
Michael S. Fischer
Update the example provided in the main README file. In this update, we preserve the browser object across Lambda function invocations, reducing latency by several hundred milliseconds per execution that...
By default, anyone can invite Lita into any Slack channel. In certain environments this may be undesirable. For example, one might want to extend Lita to perform dangerous operations and...
ECS Exec is an important feature of ECS. It allows customers to obtain a shell in the context of a running container (à la `kubectl exec`), without requiring admin access...
AWS CLI v2 support was added per #433 but this was not complete - it needs to be done for aarch64 (Graviton) as well.
Our ARM64 image has binaries built for the x86-64 architecture in it, including `ecs-cli`, leading to the following error when you try to run it: ``` /usr/local/bin/ecs-cli: cannot execute binary...
Confirm by changing [ ] to [x] below to ensure that it's a bug: - [x] I've gone though the [API reference](https://docs.aws.amazon.com/sdk-for-go/v2/api/) - [x] I've checked [AWS Forums](https://forums.aws.amazon.com) and [StackOverflow](https://stackoverflow.com/questions/tagged/aws-sdk-go)...
I'm building an automated test suite for some broker maintenance automation involving multiple brokers. As part of this test suite, I'm building a three-broker Kafka cluster, and desire to create...
By default, the VPC CNI pod logs most of its output to a file (by default, `/host/var/log/aws-routed-eni/ipamd.log`) instead of standard output. This is atypical for containerized applications, which [idiomatically log...
00-constants.t is failing against curl 7.15.5 (which ships with CentOS/RHEL 5): ``` t/00constants.t ........... 1/399 # Failed test 'CURL_SOCKET_BAD is defined alright - Invalid argument' # at t/00constants.t line 59....
`Map` types aren't idiomatic for Typescript. Where types like `Map` are used, they should be replaced with `{ [key:string]: T }`. For example, this code looks quite clumsy: ```ts fargateProfiles:...