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 064e030278 Use static azure blob container name
064e030278 is described below

commit 064e03027800ae1f4e6a29959c71fbb525a580e4
Author: bhavani111 <[email protected]>
AuthorDate: Tue Sep 22 07:31:33 2026 +0100

    Use static azure blob container name
---
 .../camel/quarkus/test/support/azure/AzureStorageTestResource.java     | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git 
a/integration-tests-support/azure/src/main/java/org/apache/camel/quarkus/test/support/azure/AzureStorageTestResource.java
 
b/integration-tests-support/azure/src/main/java/org/apache/camel/quarkus/test/support/azure/AzureStorageTestResource.java
index 3ac9e5674c..ce3c4b1d07 100644
--- 
a/integration-tests-support/azure/src/main/java/org/apache/camel/quarkus/test/support/azure/AzureStorageTestResource.java
+++ 
b/integration-tests-support/azure/src/main/java/org/apache/camel/quarkus/test/support/azure/AzureStorageTestResource.java
@@ -50,6 +50,7 @@ public class AzureStorageTestResource implements 
QuarkusTestResourceLifecycleMan
     private GenericContainer<?> container;
     private GenericContainer<?> eventHubsEmulatorContainer;
     private Network network = Network.newNetwork();
+    private static final String azureBlobContainername = "camel-quarkus-" + 
UUID.randomUUID();
 
     public enum AzuriteService {
         blob(10000),
@@ -93,8 +94,6 @@ public class AzureStorageTestResource implements 
QuarkusTestResourceLifecycleMan
         final boolean realCredentialsProvided = realAzureStorageAccountName != 
null
                 && System.getenv("AZURE_STORAGE_ACCOUNT_KEY") != null;
 
-        final String azureBlobContainername = "camel-quarkus-" + 
UUID.randomUUID();
-
         final String azureStorageAccountName = config
                 .getValue("azure.storage.account-name", String.class);
         final boolean startMockBackend = 
MockBackendUtils.startMockBackend(false);

Reply via email to