Baljit Singh
Baljit Singh
I also don't think the OpenTelemetry document is saying to forward `traceparent` unmutated. It is only saying that the context must be propagated, which means trace id must be unmutated;...
For UUIDv4, MSB is both positive and negative, while the LSB is always negative. So, shouldn't it be `sfixed64`?
A little late to the party, but I think we should consider using https://github.com/jqno/equalsverifier to test `hashCode` and `equals` in a standard way, instead of writing all different permutations in...
This is exactly the feature preventing us from adopting Vector as our edge agent. 👍 Perhaps, we can also do another strategy, `openid`. The minor change vs. `oauth2` is that...
Right, client credentials flow is still the primary case. The only difference here is what is configured. With OpenID, we just configure the standard OpenID endpoint; the client can discover/validate...
A few (inter-related) comments: - I do agree that OAuth2 support with client credentials flow should be the top priority amongst these issues. This will probably unblock majority of people....
According to the [docs](https://www.keycloak.org/docs/latest/upgrading/index.html#deprecated-proxy-option), the `edge` mode (`kc.sh --proxy edge`) is equivalent to `kc.sh --proxy-headers forwarded|xforwarded --http-enabled true`. Don't we need to add another variable to also support the `http-enabled`...
Here's an example usage: ```java class SampleS3HttpUpload { private final S3AsyncClient s3 = S3AsyncClient.create(); public void uploadHttp() { // made-up APIs AsyncRequestBody body = AsyncRequestBody.fromHttpSource("https://upload.wikimedia.org/wikipedia/commons/9/93/Amazon_Web_Services_Logo.svg") .header("Authorization", "Bearer some-token") .build(); s3.putObject(req...