We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40670fb commit 51cb6f0Copy full SHA for 51cb6f0
smoke-tests-otel-starter/spring-boot-3/src/main/java/io/opentelemetry/spring/smoketest/RuntimeHints.java
@@ -24,8 +24,9 @@ public void registerHints(
24
.registerType(
25
TypeReference.of(
26
"org.springframework.data.mongodb.core.aggregation.AggregationOperation"),
27
- hint -> {
28
- hint.withMembers(MemberCategory.INVOKE_DECLARED_CONSTRUCTORS);
29
- });
+ hint -> hint.withMembers(MemberCategory.INVOKE_DECLARED_CONSTRUCTORS))
+ .registerType(
+ TypeReference.of("org.apache.kafka.common.serialization.StringDeserializer"),
30
+ hint -> hint.withMembers(MemberCategory.INVOKE_PUBLIC_CONSTRUCTORS));
31
}
32
0 commit comments