This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/main by this push:
     new 52acb2659a Verify that gRPC generated stub object toString works in 
native mode
52acb2659a is described below

commit 52acb2659a9f15294cab4c401e4def5b84af956b
Author: James Netherton <[email protected]>
AuthorDate: Thu Mar 12 09:25:40 2026 +0000

    Verify that gRPC generated stub object toString works in native mode
---
 .../main/java/org/apache/camel/quarkus/component/grpc/it/GrpcRoute.java  | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/integration-tests/grpc/src/main/java/org/apache/camel/quarkus/component/grpc/it/GrpcRoute.java
 
b/integration-tests/grpc/src/main/java/org/apache/camel/quarkus/component/grpc/it/GrpcRoute.java
index a430dca77a..2d95d06021 100644
--- 
a/integration-tests/grpc/src/main/java/org/apache/camel/quarkus/component/grpc/it/GrpcRoute.java
+++ 
b/integration-tests/grpc/src/main/java/org/apache/camel/quarkus/component/grpc/it/GrpcRoute.java
@@ -40,6 +40,7 @@ public class GrpcRoute extends RouteBuilder {
     public void configure() throws Exception {
         // Synchronous / asynchronous (dynamic) producers
         from("direct:sendGrpcMessage")
+                .log("Received message: ${body}")
                 .toD("grpc://localhost:${header.port}/" + PING_PONG_SERVICE
                         + 
"?method=${header.CamelGrpcMethodName}&synchronous=${header.isSync}");
 

Reply via email to