Dmitry Kankalovich
Dmitry Kankalovich
I hit the same problem. Followed instructions here https://www.npmjs.com/package/aws-lambda-ric and made image which passes local test, per instruction. However, deployed to actual lambda it fails with ``` _XSERVTransmkdir: ERROR: euid...
I couldn't wait till this is merged, so for those who need this ASAP there is a way to get around, basically create your custom `provider` and place it as...
Follow up on https://github.com/wurstmeister/kafka-docker/issues/110 for **MacOS**. Until you explicitly add `--net kafka-docker_default` to the `start-kafka-shell.sh` script, the internal docker DNS resolution for host `zookeeper` won't work, so further examples about...
Hit the same problem and was breaking my head over it. The RSS endpoint breaks protocol by sending gzip unconditionally Simple test: ```bash # this works curl https://web3isgoinggreat.com/feed.xml --compressed ```...
@BryanHunt thanks for the tip with `JacksonFeature`, that helped me to enable JSON support in POST calls. However during deserialization from JSON to POJO it looks like Jackson annotations (for...
I can only guess that this issue is caused by jersey-all bundle using it's internal `com.fasterxml.jackson.annotation` package which had not being exposed. At this point probably better to fallback to...
I actually managed to make it work in `docker-compose` (somewhat work), but I have a particular problem which drives me crazy. First of all, I need to mention that I...
I am superhyped about Bun and wish there was at least a workaround to the problem. I've tried mix and match `npm` with `bun install` to get around it, but...
> @dzmitry-kankalovich you could publish private packages to a private registry. It's more flexible than git dep. @3cp I've considered that, but in my case the failure happens in transitive...
@knoopx do subsequent `bun install` invocations work? Because it doesn't in my case, again likely because there is no record of dependency in bun's lockfile (which is different from `package-lock.json`)...