Luís Duarte
Luís Duarte
Hello @msailes , Having the same result:   Stacktrace: ``` io.micronaut.http.client.exceptions.HttpClientResponseException: Error decoding HTTP response body: No bean introspection available for type [class com.amazonaws.serverless.proxy.model.AwsProxyRequest]. Ensure the class is annotated...
Hello @sdelamo , thanks for the reply. I'm still having the same issue with the recommended change UPDATE: I think this relates to #1328
Updated Micronaut to 3.5.0 and added the following annotations: ``` @Introspected(classes = com.amazonaws.serverless.proxy.model.AwsProxyRequest.class) @SerdeImport(AwsProxyRequest.class) ``` Now i'm getting a different error: ``` Request loop failed with: Error decoding HTTP response...
Is it possible to add the Target Class to the Exception?
Agree, but if you have a lot of tests (and i mean a lot) it's kind of hard to migrate to these new API's. Also, which one of those Frameworks...
`UPDATE` By forcing `GlobalOpenTelemetry.resetForTest()` on JUnit Before Lifecycle, i'm now getting the following error: ``` Message: Unable to start GRPC server: Failed to bind to address 0.0.0.0/0.0.0.0:50051 Path Taken: ManagedChannel.serverChannel(GrpcEmbeddedServer...
Try adding these dependencies: ``` implementation("io.micronaut.tracing:micronaut-tracing-opentelemetry-grpc") implementation("io.opentelemetry:opentelemetry-exporter-otlp") implementation("io.opentelemetry:opentelemetry-extension-aws") implementation("io.opentelemetry:opentelemetry-sdk-extension-aws") implementation("io.opentelemetry.instrumentation:opentelemetry-aws-sdk-2.2") runtimeOnly("ch.qos.logback:logback-classic") runtimeOnly("net.logstash.logback:logstash-logback-encoder:7.2") runtimeOnly("io.opentelemetry.instrumentation:opentelemetry-logback-mdc-1.0") ```
@n0tl3ss , let me create a Project. In the meanwhile, can you try adding a simple JMS Producer?
Sample Project: https://github.com/driverpt/micronaut-otel-issue