You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2023/05/30 22:23:27 UTC

[camel] branch test-github-action updated (5cace3076c5 -> caf467b07d2)

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

nfilotto pushed a change to branch test-github-action
in repository https://gitbox.apache.org/repos/asf/camel.git


 discard 5cace3076c5 Force failure for testing purpose
     new caf467b07d2 Force failure for testing purpose

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (5cace3076c5)
            \
             N -- N -- N   refs/heads/test-github-action (caf467b07d2)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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.


Summary of changes:
 .../org/apache/camel/component/es/integration/ElasticsearchBulkIT.java   | 1 +
 1 file changed, 1 insertion(+)


[camel] 01/01: Force failure for testing purpose

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

nfilotto pushed a commit to branch test-github-action
in repository https://gitbox.apache.org/repos/asf/camel.git

commit caf467b07d2176910f6fdca50fed49d8f554178b
Author: Nicolas Filotto <nf...@talend.com>
AuthorDate: Wed May 31 00:21:19 2023 +0200

    Force failure for testing purpose
---
 .../org/apache/camel/component/es/integration/ElasticsearchBulkIT.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/components/camel-elasticsearch/src/test/java/org/apache/camel/component/es/integration/ElasticsearchBulkIT.java b/components/camel-elasticsearch/src/test/java/org/apache/camel/component/es/integration/ElasticsearchBulkIT.java
index bd5ab8f5bac..c14bec4480a 100644
--- a/components/camel-elasticsearch/src/test/java/org/apache/camel/component/es/integration/ElasticsearchBulkIT.java
+++ b/components/camel-elasticsearch/src/test/java/org/apache/camel/component/es/integration/ElasticsearchBulkIT.java
@@ -72,7 +72,8 @@ class ElasticsearchBulkIT extends ElasticsearchTestSupport {
                 "{\"testBulkWithString1\": \"some-value\"}", "{\"testBulkWithString2\": \"some-value\"}");
 
         List<?> indexIds = template.requestBody("direct:bulk", documents, List.class);
-        assertNotNull(indexIds, "indexIds should be set");
+
+        assertNull(indexIds, "indexIds should be set");
         assertCollectionSize("Indexed documents should match the size of documents", indexIds, documents.size());
     }