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

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


The following commit(s) were added to refs/heads/main by this push:
     new 7a67b576369 CAMEL-22453: camel-sql: Fix support for using Java String 
text blocks for multi line queries in Camel endpoints.
7a67b576369 is described below

commit 7a67b5763694990ffde54764eb613768189bb38d
Author: Claus Ibsen <[email protected]>
AuthorDate: Mon Sep 29 07:15:26 2025 +0200

    CAMEL-22453: camel-sql: Fix support for using Java String text blocks for 
multi line queries in Camel endpoints.
---
 .../org/apache/camel/parser/java/MyJava17TextBlockRouteBuilder.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/catalog/camel-route-parser/src/test/java/org/apache/camel/parser/java/MyJava17TextBlockRouteBuilder.java
 
b/catalog/camel-route-parser/src/test/java/org/apache/camel/parser/java/MyJava17TextBlockRouteBuilder.java
index c45e369aab0..c00806da1e5 100644
--- 
a/catalog/camel-route-parser/src/test/java/org/apache/camel/parser/java/MyJava17TextBlockRouteBuilder.java
+++ 
b/catalog/camel-route-parser/src/test/java/org/apache/camel/parser/java/MyJava17TextBlockRouteBuilder.java
@@ -24,8 +24,8 @@ public class MyJava17TextBlockRouteBuilder extends 
RouteBuilder {
     public void configure() {
         from("timer:foo")
                 .toD("""
-                            file:output
-                            ?fileExist=Append
+                            file:output?
+                            fileExist=Append
                             &chmod=777
                             &allowNullBody=true
                         """)

Reply via email to