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