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 2021/04/06 14:25:39 UTC

[camel] branch master updated (ba3c007 -> 58894a6)

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

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


    from ba3c007  CAMEL-16185 - AWS S3: improve multipart support - streaming upload
     new 455ceba  Fixed build
     new 58894a6  Fixed build

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:
 .../java/org/apache/camel/attachment/DefaultAttachmentMessage.java   | 5 +++++
 1 file changed, 5 insertions(+)

[camel] 01/02: Fixed build

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

commit 455cebae867b41311ad39a640e6606e1f780dc3a
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Apr 6 15:11:19 2021 +0200

    Fixed build
---
 .../java/org/apache/camel/attachment/DefaultAttachmentMessage.java   | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/components/camel-attachments/src/main/java/org/apache/camel/attachment/DefaultAttachmentMessage.java b/components/camel-attachments/src/main/java/org/apache/camel/attachment/DefaultAttachmentMessage.java
index 021f8e5..5c89090 100644
--- a/components/camel-attachments/src/main/java/org/apache/camel/attachment/DefaultAttachmentMessage.java
+++ b/components/camel-attachments/src/main/java/org/apache/camel/attachment/DefaultAttachmentMessage.java
@@ -58,6 +58,11 @@ public final class DefaultAttachmentMessage implements AttachmentMessage {
     }
 
     @Override
+    public boolean hasMessageId() {
+        return messageId != null;
+    }
+
+    @Override
     public Exchange getExchange() {
         return delegate.getExchange();
     }

[camel] 02/02: Fixed build

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

commit 58894a6b1c611d2741caaac50d6b00cbf63446c6
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Apr 6 15:19:49 2021 +0200

    Fixed build
---
 .../main/java/org/apache/camel/attachment/DefaultAttachmentMessage.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-attachments/src/main/java/org/apache/camel/attachment/DefaultAttachmentMessage.java b/components/camel-attachments/src/main/java/org/apache/camel/attachment/DefaultAttachmentMessage.java
index 5c89090..c1b9002 100644
--- a/components/camel-attachments/src/main/java/org/apache/camel/attachment/DefaultAttachmentMessage.java
+++ b/components/camel-attachments/src/main/java/org/apache/camel/attachment/DefaultAttachmentMessage.java
@@ -59,7 +59,7 @@ public final class DefaultAttachmentMessage implements AttachmentMessage {
 
     @Override
     public boolean hasMessageId() {
-        return messageId != null;
+        return delegate.getMessageId() != null;
     }
 
     @Override