This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch camel-spring-boot-4.10.x in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
commit 0191e91e81556e390696b32bb61042e2b539797e Author: Claus Ibsen <[email protected]> AuthorDate: Thu Jul 31 07:40:06 2025 +0200 CAMEL-22282: camel-http: check if message body is empty deciding between GET vs POST also for stream cached --- .../http/springboot/SpringBootPlatformHttpBridgedEndpointTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components-starter/camel-platform-http-starter/src/test/java/org/apache/camel/component/platform/http/springboot/SpringBootPlatformHttpBridgedEndpointTest.java b/components-starter/camel-platform-http-starter/src/test/java/org/apache/camel/component/platform/http/springboot/SpringBootPlatformHttpBridgedEndpointTest.java index a0736cc4026..003f44a548d 100644 --- a/components-starter/camel-platform-http-starter/src/test/java/org/apache/camel/component/platform/http/springboot/SpringBootPlatformHttpBridgedEndpointTest.java +++ b/components-starter/camel-platform-http-starter/src/test/java/org/apache/camel/component/platform/http/springboot/SpringBootPlatformHttpBridgedEndpointTest.java @@ -75,7 +75,7 @@ public class SpringBootPlatformHttpBridgedEndpointTest { from("direct:mock") .setHeader("wiremockUrl", () -> wiremockUrl) .log("${headers}") - .toD("${headers.wiremockUrl}/backend?bridgeEndpoint=true"); + .toD("${headers.wiremockUrl}/backend?skipControlHeaders=true&bridgeEndpoint=true"); } }; }
