You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2022/05/24 09:42:59 UTC

[camel] branch main created (now b08f121891c)

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

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


      at b08f121891c Regen for commit 8acc8d738386959b0dd8888efba49752aa80897d

This branch includes the following new commits:

     new b08f121891c Regen for commit 8acc8d738386959b0dd8888efba49752aa80897d

The 1 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.



[camel] 01/01: Regen for commit 8acc8d738386959b0dd8888efba49752aa80897d

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit b08f121891c23c93df7db3af558318e9478daef0
Author: davsclaus <da...@users.noreply.github.com>
AuthorDate: Tue May 24 08:36:29 2022 +0000

    Regen for commit 8acc8d738386959b0dd8888efba49752aa80897d
    
    Signed-off-by: GitHub <no...@github.com>
---
 .../apache/camel/component/mongodb/integration/MongoDbOperationsIT.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-mongodb/src/test/java/org/apache/camel/component/mongodb/integration/MongoDbOperationsIT.java b/components/camel-mongodb/src/test/java/org/apache/camel/component/mongodb/integration/MongoDbOperationsIT.java
index 5c0583bc853..02d45b2857b 100644
--- a/components/camel-mongodb/src/test/java/org/apache/camel/component/mongodb/integration/MongoDbOperationsIT.java
+++ b/components/camel-mongodb/src/test/java/org/apache/camel/component/mongodb/integration/MongoDbOperationsIT.java
@@ -146,7 +146,7 @@ public class MongoDbOperationsIT extends AbstractMongoDbITSupport {
         record1.put("scientist", "Kepler");
 
         //Pass sharded collection key as CRITERIA to prevent "MongoWriteException: Failed to target upsert by query :: could not extract exact shard key"
-        result = template.requestBodyAndHeader("direct:save", record1, CRITERIA, eq("country","Germany"));
+        result = template.requestBodyAndHeader("direct:save", record1, CRITERIA, eq("country", "Germany"));
         assertTrue(result instanceof UpdateResult);
 
         record1 = testCollection.find(eq(MONGO_ID, "testSave1")).first();