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:01:52 UTC

[camel] branch main updated: Regen for commit 8acc8d738386959b0dd8888efba49752aa80897d

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


The following commit(s) were added to refs/heads/main by this push:
     new b08f121891c Regen for commit 8acc8d738386959b0dd8888efba49752aa80897d
b08f121891c is described below

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();