You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pa...@apache.org on 2020/03/21 12:30:32 UTC

[camel] branch master updated: camel-sql: DefaultPollingEndpoint: Add missing space in useMessageBodyForSql UriParam description.

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

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


The following commit(s) were added to refs/heads/master by this push:
     new ecff572  camel-sql: DefaultPollingEndpoint: Add missing space in useMessageBodyForSql UriParam description.
ecff572 is described below

commit ecff572db3b05a4c4b9c0670b4b833df2dab9ee1
Author: Pascal Schumacher <pa...@gmx.net>
AuthorDate: Sat Mar 21 13:29:39 2020 +0100

    camel-sql: DefaultPollingEndpoint: Add missing space in useMessageBodyForSql UriParam description.
---
 .../main/java/org/apache/camel/component/sql/DefaultSqlEndpoint.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-sql/src/main/java/org/apache/camel/component/sql/DefaultSqlEndpoint.java b/components/camel-sql/src/main/java/org/apache/camel/component/sql/DefaultSqlEndpoint.java
index 7efad90..9e09321 100644
--- a/components/camel-sql/src/main/java/org/apache/camel/component/sql/DefaultSqlEndpoint.java
+++ b/components/camel-sql/src/main/java/org/apache/camel/component/sql/DefaultSqlEndpoint.java
@@ -110,7 +110,7 @@ public abstract class DefaultSqlEndpoint extends DefaultPollingEndpoint {
             + " to store the query result and the original message body is preserved.")
     private String outputHeader;
     @UriParam(label = "producer", description = "Whether to use the message body as the SQL and then headers for parameters. If this option is enabled then the SQL in the uri is not used."
-                                                + "Note that query parameters in the message body are represented by a question mark instead of a <tt>#</tt> symbol.")
+                                                + " Note that query parameters in the message body are represented by a question mark instead of a <tt>#</tt> symbol.")
     private boolean useMessageBodyForSql;
     @UriParam(label = "advanced", defaultValue = "#", description = "Specifies a character that will be replaced to ? in SQL query."
             + " Notice, that it is simple String.replaceAll() operation and no SQL parsing is involved (quoted strings will also change).")