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 10:57:57 UTC

[camel-quarkus] branch main updated: Pin fake-gcs-server container image to 1.37 tag

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

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


The following commit(s) were added to refs/heads/main by this push:
     new b52778d8de Pin fake-gcs-server container image to 1.37 tag
b52778d8de is described below

commit b52778d8de50f046beb113e7eb83d23adf5b8354
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;