You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2022/06/07 18:04:47 UTC

[camel-quarkus] branch 2.7.x updated (695e9efd9b -> d9c4bc1da1)

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

jamesnetherton pushed a change to branch 2.7.x
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


    from 695e9efd9b Better manage FHIR dependencies
     new 6a1eee4501 Fix #3829 disable checksum validation when testing with quarkus-aws2-s3 client (#3830)
     new d9c4bc1da1 Pin fake-gcs-server container image to 1.37 tag

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:
 .../aws2-s3/src/main/resources/application.properties                   | 1 +
 .../quarkus/component/google/storage/it/GoogleStorageTestResource.java  | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)


[camel-quarkus] 01/02: Fix #3829 disable checksum validation when testing with quarkus-aws2-s3 client (#3830)

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

jamesnetherton pushed a commit to branch 2.7.x
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 6a1eee4501d7b8fe87c653fefeaadae437b890fd
Author: Amos Feng <zh...@gmail.com>
AuthorDate: Wed Jun 1 19:59:03 2022 +0800

    Fix #3829 disable checksum validation when testing with quarkus-aws2-s3 client (#3830)
---
 .../aws2-s3/src/main/resources/application.properties                    | 1 +
 1 file changed, 1 insertion(+)

diff --git a/integration-test-groups/aws2-quarkus-client/aws2-s3/src/main/resources/application.properties b/integration-test-groups/aws2-quarkus-client/aws2-s3/src/main/resources/application.properties
index 1ab9e473a5..ac4af1d2d0 100644
--- a/integration-test-groups/aws2-quarkus-client/aws2-s3/src/main/resources/application.properties
+++ b/integration-test-groups/aws2-quarkus-client/aws2-s3/src/main/resources/application.properties
@@ -18,3 +18,4 @@
 # Quarkus :: S3 Client options
 #
 quarkus.s3.sync-client.type=apache
+quarkus.s3.checksum-validation=false


[camel-quarkus] 02/02: Pin fake-gcs-server container image to 1.37 tag

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

jamesnetherton pushed a commit to branch 2.7.x
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit d9c4bc1da13a2f4977f0a1c7a8c4e57f031a7203
Author: James Netherton <ja...@gmail.com>
AuthorDate: Tue Jun 7 07:16:10 2022 +0100

    Pin fake-gcs-server container image to 1.37 tag
---
 .../quarkus/component/google/storage/it/GoogleStorageTestResource.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/integration-tests/google-storage/src/test/java/org/apache/camel/quarkus/component/google/storage/it/GoogleStorageTestResource.java b/integration-tests/google-storage/src/test/java/org/apache/camel/quarkus/component/google/storage/it/GoogleStorageTestResource.java
index 234da5c774..a18d4476fc 100644
--- a/integration-tests/google-storage/src/test/java/org/apache/camel/quarkus/component/google/storage/it/GoogleStorageTestResource.java
+++ b/integration-tests/google-storage/src/test/java/org/apache/camel/quarkus/component/google/storage/it/GoogleStorageTestResource.java
@@ -27,7 +27,7 @@ import org.testcontainers.containers.GenericContainer;
 public class GoogleStorageTestResource implements QuarkusTestResourceLifecycleManager {
 
     public static final int PORT = AvailablePortFinder.getNextAvailable();
-    public static final String CONTAINER_NAME = "fsouza/fake-gcs-server";
+    public static final String CONTAINER_NAME = "fsouza/fake-gcs-server:1.37";
 
     private GenericContainer<?> container;