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

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

commit 1349cd764f18b58f80e2f23ca47bc505cc064e24
Author: James Netherton <[email protected]>
AuthorDate: Thu Jun 11 07:26:54 2026 +0100

    Fix NettyHttpTest.transferException by disabling muteException
---
 .../org/apache/camel/quarkus/component/http/netty/NettyHttpRoutes.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/integration-test-groups/http/netty-http/src/main/java/org/apache/camel/quarkus/component/http/netty/NettyHttpRoutes.java
 
b/integration-test-groups/http/netty-http/src/main/java/org/apache/camel/quarkus/component/http/netty/NettyHttpRoutes.java
index fb670aee36..b229601095 100644
--- 
a/integration-test-groups/http/netty-http/src/main/java/org/apache/camel/quarkus/component/http/netty/NettyHttpRoutes.java
+++ 
b/integration-test-groups/http/netty-http/src/main/java/org/apache/camel/quarkus/component/http/netty/NettyHttpRoutes.java
@@ -111,7 +111,7 @@ public class NettyHttpRoutes extends RouteBuilder {
                 
.to("netty-http:https://localhost:{{quarkus.http.test-ssl-port}}/service/common/https?ssl=true&sslContextParameters=#sslContextParameters";);
         
from("netty-http:http://0.0.0.0:{{camel.netty-http.test-port}}/test/server/hello";)
                 .transform().constant("Netty Hello World");
-        
from("netty-http:http://0.0.0.0:{{camel.netty-http.test-port}}/test/server/serialized/exception?transferException=true";)
+        
from("netty-http:http://0.0.0.0:{{camel.netty-http.test-port}}/test/server/serialized/exception?muteException=false&transferException=true";)
                 .throwException(new IllegalStateException("Forced exception"));
         
from("netty-http:http://0.0.0.0:{{camel.netty-http.compression-test-port}}/compressed?compression=true";)
                 .transform().constant("Netty Hello World Compressed");

Reply via email to