Phil Clay
Phil Clay
## Feature Request For cluster-mode connections, fully verify certificates and hostnames for seed connections, but only verify certificates (without hostname verification) for discovered cluster node connections where IP addresses are...
Lists created with guava's `immutableCollection.asList()` are not able to be deserialized by the guava serializers. For example, this list cannot be deserialized: ```java ImmutableSet.of("A", "B", "C").asList() ``` Here is a...
**New Behavior** I'd like the ability to attach additional attributes/properties to `ClientRegistration`s and `ProviderDetails`, so that it can be utilized by `ReactiveOAuth2AccessTokenResponseClient`s and `OAuth2AccessTokenResponseClient`s when requesting tokens. For example, when...
### Is your feature request related to a problem? Please describe. For server rpc spans, sometimes the rpc service/method is not known when the span is started. Unfortunately [`RpcServerAttributesExtractor`](https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/5afe4d203524cea9907e4e5393feb74f52844949/instrumentation-api-semconv/src/main/java/io/opentelemetry/instrumentation/api/instrumenter/rpc/RpcServerAttributesExtractor.java) cannot...
In logback xml, when configuring string values with an unmatched right curly brace, the right curly brace and everything after it is dropped. An easy way to see this behavior...
### Is your feature request related to a problem? Please describe. DropWizard Metrics does not natively support tags/attributes. However, a common workaround for users of DropWizard Metrics is to encode...
`AbstractJackson2Decoder.decodeToMono` [currently uses `DataBufferUtils.join` to join all DataBuffers](https://github.com/spring-projects/spring-framework/blob/a6bede22c113e69206c13735dbf820c7cb043e2e/spring-web/src/main/java/org/springframework/http/codec/json/AbstractJackson2Decoder.java#L158), [converts the result to an input stream, and then uses jackson's blocking parser](https://github.com/spring-projects/spring-framework/blob/a6bede22c113e69206c13735dbf820c7cb043e2e/spring-web/src/main/java/org/springframework/http/codec/json/AbstractJackson2Decoder.java#L168). This approach reads all DataBuffers for the entire payload...