csrl
csrl
Erlcass as a library is consumed by applications and does not stand on its own. As such it should not force using additional logging facilities that the application does not...
PR #194 "Detect Self Signed Certificate Authority for Kubernetes Strategy" added support for using `/run/secrets/kubernetes.io/serviceaccount/ca.crt` as the cacert when making httpc connections. However, OTP 26 returns selfsigned_peer error if that...
**Describe the bug** When providing the server's self signed cert in cacertfile, the ssl connection fails with `selfsigned_peer`. Because 3rd party libraries only provide the ability to customize cacertfile, and...
I've significantly cleaned up and fully implemented all functionality of zeromq in the erlang bindings. The concept is fairly basic. A zeromq socket has a controlling erlang process. The driver...
cppdriver uses old cmake min version which cmake 4.x doesn't like. Patching cppdriver like so resolves: ```patch diff --git a/CMakeLists.txt b/CMakeLists.txt index c615094..a5d193a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4...
https://github.com/ex-aws/ex_aws_s3/blob/9ec181b45787f684d59d4830cedcf7377f16aaeb/lib/ex_aws/s3/parsers.ex#L124-L136 There is no support for the part marker in the parser. The xml parser should instead be: ```elixir SweetXml.xpath( xml, ~x"//ListPartsResult", is_truncated: ~x"./IsTruncated/text()"s, next_part_number_marker: ~x"./NextPartNumberMarker/text()"s, parts: [ ~x"./Part"l, part_number:...