You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by zb...@apache.org on 2022/03/25 13:30:24 UTC

[camel-quarkus] branch main updated: Azure integration tests - upgrade the setup script

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

zbendhiba 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 7020e1b  Azure integration tests - upgrade the setup script
7020e1b is described below

commit 7020e1be65adfd1e4ac91df93c06ed7c48d3f833
Author: Zineb Bendhiba <be...@gmail.com>
AuthorDate: Wed Mar 23 16:57:10 2022 +0100

    Azure integration tests - upgrade the setup script
---
 integration-test-groups/azure/azure-resources.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/integration-test-groups/azure/azure-resources.sh b/integration-test-groups/azure/azure-resources.sh
index 8bdcbaa..1e65e5b 100755
--- a/integration-test-groups/azure/azure-resources.sh
+++ b/integration-test-groups/azure/azure-resources.sh
@@ -40,7 +40,7 @@ function createResources() {
     az group create --name ${RESOURCE_GROUP} --location ${ZONE}
 
     az storage account create --name ${AZURE_STORAGE_ACCOUNT_NAME} --resource-group ${RESOURCE_GROUP} --location ${ZONE} --sku Standard_LRS --kind StorageV2
-    az storage account blob-service-properties update --enable-change-feed true --delete-retention-days 1 -n ${AZURE_STORAGE_ACCOUNT_NAME} -g ${RESOURCE_GROUP}
+    az storage account blob-service-properties update --enable-change-feed true --enable-delete-retention true --delete-retention-days 1 -n ${AZURE_STORAGE_ACCOUNT_NAME} -g ${RESOURCE_GROUP}
 
     SUBSCRIPTION_ID="$(az account list --query '[0].id' -o tsv)"
     USER_ID="$(az ad signed-in-user show --query objectId -o tsv)"