This is an automated email from the ASF dual-hosted git repository. acosentino 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 62066c5 Regen 62066c5 is described below commit 62066c502984e69e9a2427b84429c55b6e0e76ef Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Fri Dec 20 17:04:38 2019 +0100 Regen --- components/camel-elsql/src/main/docs/elsql-component.adoc | 2 +- components/camel-log/src/main/docs/log-component.adoc | 4 ++-- .../builder/endpoint/dsl/ElsqlEndpointBuilderFactory.java | 4 ++-- .../builder/endpoint/dsl/LogEndpointBuilderFactory.java | 12 ++++++------ 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/components/camel-elsql/src/main/docs/elsql-component.adoc b/components/camel-elsql/src/main/docs/elsql-component.adoc index 00e29dc..dfa1e72 100644 --- a/components/camel-elsql/src/main/docs/elsql-component.adoc +++ b/components/camel-elsql/src/main/docs/elsql-component.adoc @@ -116,7 +116,7 @@ with the following path and query parameters: | *onConsumeFailed* (consumer) | After processing each row then this query can be executed, if the Exchange failed, for example to mark the row as failed. The query can have parameter. | | String | *routeEmptyResultSet* (consumer) | Sets whether empty resultset should be allowed to be sent to the next hop. Defaults to false. So the empty resultset will be filtered out. | false | boolean | *sendEmptyMessageWhenIdle* (consumer) | If the polling consumer did not poll any files, you can enable this option to send an empty message (no body) instead. | false | boolean -| *transacted* (consumer) | Enables or disables transaction. If enabled then if processing an exchange failed then the consumerbreak out processing any further exchanges to cause a rollback eager. | false | boolean +| *transacted* (consumer) | Enables or disables transaction. If enabled then if processing an exchange failed then the consumer breaks out processing any further exchanges to cause a rollback eager. | false | boolean | *useIterator* (consumer) | Sets how resultset should be delivered to route. Indicates delivery as either a list or individual object. defaults to true. | true | boolean | *exceptionHandler* (consumer) | To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this option is not in use. By default the consumer will deal with exceptions, that will be logged at WARN or ERROR level and ignored. | | ExceptionHandler | *exchangePattern* (consumer) | Sets the exchange pattern when the consumer creates an exchange. | | ExchangePattern diff --git a/components/camel-log/src/main/docs/log-component.adoc b/components/camel-log/src/main/docs/log-component.adoc index 37919e8..a1873b7 100644 --- a/components/camel-log/src/main/docs/log-component.adoc +++ b/components/camel-log/src/main/docs/log-component.adoc @@ -121,7 +121,7 @@ with the following path and query parameters: | *showAll* (formatting) | Quick option for turning all options on. (multiline, maxChars has to be manually set if to be used) | false | boolean | *showBody* (formatting) | Show the message body. | true | boolean | *showBodyType* (formatting) | Show the body Java type. | true | boolean -| *showCaughtException* (formatting) | f the exchange has a caught exception, show the exception message (no stack trace).A caught exception is stored as a property on the exchange (using the key org.apache.camel.Exchange#EXCEPTION_CAUGHT and for instance a doCatch can catch exceptions. | false | boolean +| *showCaughtException* (formatting) | If the exchange has a caught exception, show the exception message (no stack trace). A caught exception is stored as a property on the exchange (using the key org.apache.camel.Exchange#EXCEPTION_CAUGHT and for instance a doCatch can catch exceptions. | false | boolean | *showException* (formatting) | If the exchange has an exception, show the exception message (no stacktrace) | false | boolean | *showExchangeId* (formatting) | Show the unique exchange ID. | false | boolean | *showExchangePattern* (formatting) | Shows the Message Exchange Pattern (or MEP for short). | true | boolean @@ -131,7 +131,7 @@ with the following path and query parameters: | *showProperties* (formatting) | Show the exchange properties. | false | boolean | *showStackTrace* (formatting) | Show the stack trace, if an exchange has an exception. Only effective if one of showAll, showException or showCaughtException are enabled. | false | boolean | *showStreams* (formatting) | Whether Camel should show stream bodies or not (eg such as java.io.InputStream). Beware if you enable this option then you may not be able later to access the message body as the stream have already been read by this logger. To remedy this you will have to use Stream Caching. | false | boolean -| *skipBodyLineSeparator* (formatting) | Whether to skip line separators when logging the message body.This allows to log the message body in one line, setting this option to false will preserve any line separators from the body, which then will log the body as is. | true | boolean +| *skipBodyLineSeparator* (formatting) | Whether to skip line separators when logging the message body. This allows to log the message body in one line, setting this option to false will preserve any line separators from the body, which then will log the body as is. | true | boolean | *style* (formatting) | Sets the outputs style to use. | Default | OutputStyle |=== // endpoint options: END diff --git a/core/camel-endpointdsl/src/main/java/org/apache/camel/builder/endpoint/dsl/ElsqlEndpointBuilderFactory.java b/core/camel-endpointdsl/src/main/java/org/apache/camel/builder/endpoint/dsl/ElsqlEndpointBuilderFactory.java index 1f9c809..ee8cc4a 100644 --- a/core/camel-endpointdsl/src/main/java/org/apache/camel/builder/endpoint/dsl/ElsqlEndpointBuilderFactory.java +++ b/core/camel-endpointdsl/src/main/java/org/apache/camel/builder/endpoint/dsl/ElsqlEndpointBuilderFactory.java @@ -440,7 +440,7 @@ public interface ElsqlEndpointBuilderFactory { } /** * Enables or disables transaction. If enabled then if processing an - * exchange failed then the consumerbreak out processing any further + * exchange failed then the consumer breaks out processing any further * exchanges to cause a rollback eager. * * The option is a: <code>boolean</code> type. @@ -453,7 +453,7 @@ public interface ElsqlEndpointBuilderFactory { } /** * Enables or disables transaction. If enabled then if processing an - * exchange failed then the consumerbreak out processing any further + * exchange failed then the consumer breaks out processing any further * exchanges to cause a rollback eager. * * The option will be converted to a <code>boolean</code> type. diff --git a/core/camel-endpointdsl/src/main/java/org/apache/camel/builder/endpoint/dsl/LogEndpointBuilderFactory.java b/core/camel-endpointdsl/src/main/java/org/apache/camel/builder/endpoint/dsl/LogEndpointBuilderFactory.java index 146d9b8..0b536d1 100644 --- a/core/camel-endpointdsl/src/main/java/org/apache/camel/builder/endpoint/dsl/LogEndpointBuilderFactory.java +++ b/core/camel-endpointdsl/src/main/java/org/apache/camel/builder/endpoint/dsl/LogEndpointBuilderFactory.java @@ -330,8 +330,8 @@ public interface LogEndpointBuilderFactory { return this; } /** - * f the exchange has a caught exception, show the exception message (no - * stack trace).A caught exception is stored as a property on the + * If the exchange has a caught exception, show the exception message + * (no stack trace). A caught exception is stored as a property on the * exchange (using the key org.apache.camel.Exchange#EXCEPTION_CAUGHT * and for instance a doCatch can catch exceptions. * @@ -345,8 +345,8 @@ public interface LogEndpointBuilderFactory { return this; } /** - * f the exchange has a caught exception, show the exception message (no - * stack trace).A caught exception is stored as a property on the + * If the exchange has a caught exception, show the exception message + * (no stack trace). A caught exception is stored as a property on the * exchange (using the key org.apache.camel.Exchange#EXCEPTION_CAUGHT * and for instance a doCatch can catch exceptions. * @@ -574,7 +574,7 @@ public interface LogEndpointBuilderFactory { return this; } /** - * Whether to skip line separators when logging the message body.This + * Whether to skip line separators when logging the message body. This * allows to log the message body in one line, setting this option to * false will preserve any line separators from the body, which then * will log the body as is. @@ -589,7 +589,7 @@ public interface LogEndpointBuilderFactory { return this; } /** - * Whether to skip line separators when logging the message body.This + * Whether to skip line separators when logging the message body. This * allows to log the message body in one line, setting this option to * false will preserve any line separators from the body, which then * will log the body as is.