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/09/27 15:48:00 UTC

[camel] branch master updated (576ad76 -> 7dccde0)

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

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


    from 576ad76  Camel-Ignite: Regen
     new 2c96278  AbstractApiConfiguration: Add missing space in UriParam description.
     new 7dccde0  OptaPlannerProducer: Add missing log message argument

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../org/apache/camel/component/optaplanner/OptaPlannerProducer.java     | 2 +-
 .../org/apache/camel/support/component/AbstractApiConfiguration.java    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


[camel] 02/02: OptaPlannerProducer: Add missing log message argument

Posted by pa...@apache.org.
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

commit 7dccde05a780d79205d02d8366ec751e0f7c93ec
Author: Pascal Schumacher <pa...@gmx.net>
AuthorDate: Sun Sep 27 17:45:59 2020 +0200

    OptaPlannerProducer: Add missing log message argument
---
 .../org/apache/camel/component/optaplanner/OptaPlannerProducer.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-optaplanner/src/main/java/org/apache/camel/component/optaplanner/OptaPlannerProducer.java b/components/camel-optaplanner/src/main/java/org/apache/camel/component/optaplanner/OptaPlannerProducer.java
index 0f539fe..e4a4a04 100644
--- a/components/camel-optaplanner/src/main/java/org/apache/camel/component/optaplanner/OptaPlannerProducer.java
+++ b/components/camel-optaplanner/src/main/java/org/apache/camel/component/optaplanner/OptaPlannerProducer.java
@@ -154,8 +154,8 @@ public class OptaPlannerProducer extends DefaultAsyncProducer {
         final SolverManager solverManager = getSolverManager(exchange);
 
         if (body.getClass().isAnnotationPresent(PlanningSolution.class)) {
-            LOGGER.debug("Asynchronously solving problem: [{}] with id [{}]", body);
             Long problemId = endpoint.getConfiguration().getProblemId();
+            LOGGER.debug("Asynchronously solving problem: [{}] with id [{}]", body, problemId);
             if (isAsync(exchange)) {
                 executor.submit(() -> {
                     try {


[camel] 01/02: AbstractApiConfiguration: Add missing space in UriParam description.

Posted by pa...@apache.org.
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

commit 2c962789cfe0ae094d3cfbe55461403a5a761e0b
Author: Pascal Schumacher <pa...@gmx.net>
AuthorDate: Sun Sep 27 17:42:20 2020 +0200

    AbstractApiConfiguration: Add missing space in UriParam description.
---
 .../org/apache/camel/support/component/AbstractApiConfiguration.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/camel-support/src/main/java/org/apache/camel/support/component/AbstractApiConfiguration.java b/core/camel-support/src/main/java/org/apache/camel/support/component/AbstractApiConfiguration.java
index d63fc0c..3a3728b 100644
--- a/core/camel-support/src/main/java/org/apache/camel/support/component/AbstractApiConfiguration.java
+++ b/core/camel-support/src/main/java/org/apache/camel/support/component/AbstractApiConfiguration.java
@@ -22,7 +22,7 @@ public class AbstractApiConfiguration {
 
     @UriParam(label = "consumer", defaultValue = "true",
               description = "When consumer return an array or collection this will generate one exchange per element, and their routes will be executed once for each exchange."
-                            + "Set this value to false to use a single exchange for the entire list or array.")
+                            + " Set this value to false to use a single exchange for the entire list or array.")
     private boolean splitResult;
 
     public boolean isSplitResult() {