Charith Ellawala

Results 80 comments of Charith Ellawala

Distributed traces work if the propagation format is set to W3C trace context or B3. ```go // W3C Trace Context otel.SetTextMapPropagator(propagation.TraceContext{}) // B3 b3propagator := b3.New(b3.WithInjectEncoding(b3.B3MultipleHeader | b3.B3SingleHeader)) otel.SetTextMapPropagator(b3propagator) ```...

Thanks for raising the issue. There are technical and usability reasons why we don't support multiple documents in a file. In terms of usability, because most of our storage backends...

Cosign has experimental support for signing using the GitHub OIDC -- which means we don't have to manage a private key separately. Unfortunately, as of 08-11-2021, the Rekor transparency log...

There is an official GitHub action for this now: https://github.com/slsa-framework/slsa-github-generator-go https://github.blog/2022-04-07-slsa-3-compliance-with-github-actions/

`consumeStrings` is a convenience method that makes a lot of assumptions so it probably won't suit some use cases. You can create your own consumer by calling [`createStringConsumer`](http://charithe.github.io/kafka-junit/com/github/charithe/kafka/KafkaHelper.html#createStringConsumer-java.util.Properties-) or [`createConsumer`](http://charithe.github.io/kafka-junit/com/github/charithe/kafka/KafkaHelper.html#createConsumer-org.apache.kafka.common.serialization.Deserializer-org.apache.kafka.common.serialization.Deserializer-java.util.Properties-)...

It's not desired behaviour but rather an unfortunate side effect. The `consume*` helpers are something I regret in hindsight so it's probably time to deprecate them. They make a lot...

Thanks for reporting the issue. Unfortunately I can't provide support for the Windows platform. If you know how to fix the problem, please send a PR and I'll be happy...

Yes, I remember reading that Windows creates exclusive locks on files whereas Unix-like systems don't. This is probably something to do with that. I'll mark this as up-for-grabs so that...

Sounds like a useful feature. I will be happy to accept a PR.

Thanks for the offer and we appreciate your help. I think this one has to be done by someone from the Cerbos team because it requires access to GitHub settings...